1 #ifndef __TEST_USERS_H__
2 #define __TEST_USERS_H__
4 class TEST_USERS : public USERS {
8 int FindByName(const std::string & /*login*/, USER_PTR * /*user*/)
11 bool TariffInUse(const std::string & /*tariffName*/) const
14 void AddNotifierUserAdd(NOTIFIER_BASE<USER_PTR> * /*notifier*/) {}
15 void DelNotifierUserAdd(NOTIFIER_BASE<USER_PTR> * /*notifier*/) {}
17 void AddNotifierUserDel(NOTIFIER_BASE<USER_PTR> * /*notifier*/) {}
18 void DelNotifierUserDel(NOTIFIER_BASE<USER_PTR> * /*notifier*/) {}
20 int Add(const std::string & /*login*/, const ADMIN * /*admin*/)
22 void Del(const std::string & /*login*/, const ADMIN * /*admin*/) {}
24 bool Authorize(const std::string &, uint32_t, uint32_t, const AUTH *)
26 bool Unauthorize(const std::string &, const AUTH *)
29 int ReadUsers() { return 0; }
30 virtual size_t Count() const { return 0; };
32 int FindByIPIdx(uint32_t /*ip*/, USER_PTR * /*user*/) const
34 bool IsIPInIndex(uint32_t /*ip*/) const { return false; }
36 int OpenSearch() { return 0; }
37 int SearchNext(int /*handle*/, USER_PTR * /*u*/) { return -1; }
38 int CloseSearch(int /*handle*/) { return 0; }
40 int Start() { return 0; }
41 int Stop() { return 0; }