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*/)
10 int FindByName(const std::string & /*login*/, CONST_USER_PTR * /*user*/) const
13 bool TariffInUse(const std::string & /*tariffName*/) const
16 void AddNotifierUserAdd(NOTIFIER_BASE<USER_PTR> * /*notifier*/) {}
17 void DelNotifierUserAdd(NOTIFIER_BASE<USER_PTR> * /*notifier*/) {}
19 void AddNotifierUserDel(NOTIFIER_BASE<USER_PTR> * /*notifier*/) {}
20 void DelNotifierUserDel(NOTIFIER_BASE<USER_PTR> * /*notifier*/) {}
22 int Add(const std::string & /*login*/, const ADMIN * /*admin*/)
24 void Del(const std::string & /*login*/, const ADMIN * /*admin*/) {}
26 bool Authorize(const std::string &, uint32_t, uint32_t, const AUTH *)
28 bool Unauthorize(const std::string &, const AUTH *, const std::string &)
31 int ReadUsers() { return 0; }
32 virtual size_t Count() const { return 0; };
34 int FindByIPIdx(uint32_t /*ip*/, USER_PTR * /*user*/) const
36 bool IsIPInIndex(uint32_t /*ip*/) const { return false; }
37 bool IsIPInUse(uint32_t, const std::string &, CONST_USER_PTR *) const { return false; }
39 int OpenSearch() { return 0; }
40 int SearchNext(int /*handle*/, USER_PTR * /*u*/) { return -1; }
41 int CloseSearch(int /*handle*/) { return 0; }
43 int Start() { return 0; }
44 int Stop() { return 0; }