]> git.stg.codes - stg.git/blobdiff - tests/testusers.h
Added TEST_USERS
[stg.git] / tests / testusers.h
diff --git a/tests/testusers.h b/tests/testusers.h
new file mode 100644 (file)
index 0000000..1250ae4
--- /dev/null
@@ -0,0 +1,37 @@
+#ifndef __TEST_USERS_H__
+#define __TEST_USERS_H__
+
+class TEST_USERS : public USERS {
+    public:
+        TEST_USERS() {}
+
+        int  FindByName(const std::string & /*login*/, USER_PTR * /*user*/) { return -1; }
+
+        bool TariffInUse(const std::string & /*tariffName*/) const { return -1; }
+
+        void AddNotifierUserAdd(NOTIFIER_BASE<USER_PTR> * /*notifier*/) {}
+        void DelNotifierUserAdd(NOTIFIER_BASE<USER_PTR> * /*notifier*/) {}
+
+        void AddNotifierUserDel(NOTIFIER_BASE<USER_PTR> * /*notifier*/) {}
+        void DelNotifierUserDel(NOTIFIER_BASE<USER_PTR> * /*notifier*/) {}
+
+        int  Add(const std::string & /*login*/, const ADMIN * /*admin*/) { return 0; }
+        void Del(const std::string & /*login*/, const ADMIN * /*admin*/) {}
+
+        int  ReadUsers() { return 0; }
+        int  GetUserNum() const { return 0; }
+
+        int  FindByIPIdx(uint32_t /*ip*/, USER_PTR * /*user*/) const { return -1; }
+        bool IsIPInIndex(uint32_t /*ip*/) const { return false; }
+
+        int  OpenSearch() { return 0; }
+        int  SearchNext(int /*handle*/, USER_PTR * /*u*/) { return -1; }
+        int  CloseSearch(int /*handle*/) { return 0; }
+
+        int  Start() { return 0; }
+        int  Stop() { return 0; }
+
+    private:
+};
+
+#endif