]> git.stg.codes - stg.git/blob - tests/testusers.h
Start replacing notifiers with subscriptions.
[stg.git] / tests / testusers.h
1 #pragma once
2
3 #include "stg/users.h"
4
5 struct TestUsers : public STG::Users
6 {
7     TestUsers() {}
8
9     using UserPtr = STG::User*;
10     using ConstUserPtr = const STG::User*;
11
12     int  FindByName(const std::string& /*login*/, UserPtr* /*user*/) override
13     { return -1; }
14     int  FindByName(const std::string& /*login*/, ConstUserPtr* /*user*/) const override
15     { return -1; }
16
17     bool TariffInUse(const std::string& /*tariffName*/) const override
18     { return -1; }
19
20     int  Add(const std::string& /*login*/, const STG::Admin* /*admin*/) override
21     { return 0; }
22     void Del(const std::string& /*login*/, const STG::Admin* /*admin*/) override {}
23
24     bool Authorize(const std::string&, uint32_t, uint32_t, const STG::Auth*) override
25     { return false; }
26     bool Unauthorize(const std::string&, const STG::Auth*, const std::string&) override
27     { return false; }
28
29     int  ReadUsers() override { return 0; }
30     virtual size_t Count() const override { return 0; };
31
32     int  FindByIPIdx(uint32_t /*ip*/, UserPtr* /*user*/) const override
33     { return -1; }
34     bool IsIPInIndex(uint32_t /*ip*/) const override { return false; }
35     bool IsIPInUse(uint32_t, const std::string&, ConstUserPtr*) const override { return false; }
36     bool Exists(const std::string&) const override { return false; }
37
38     unsigned int  OpenSearch() override { return 0; }
39     int  SearchNext(int /*handle*/, UserPtr* /*u*/) override { return -1; }
40     int  CloseSearch(int /*handle*/) override { return 0; }
41
42     int  Start() override { return 0; }
43     int  Stop() override { return 0; }
44 };