summaryrefslogtreecommitdiff
path: root/test/unit_tests/security_tests/ut_get_clients.cpp
blob: 093200c9022393a472e168c148fe5fe9ee1153e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright (C) 2022 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#include <memory>
#include <gtest/gtest.h>
#include "../../common/utility.hpp"

namespace {
std::unordered_set<vsomeip_v3::client_t> clients;
std::unordered_set<vsomeip_v3::client_t> local_clients;
vsomeip_v3::client_t client_1 = 10;
vsomeip_v3::client_t client_2 = 11;
vsomeip_v3::client_t client_3 = 12;
vsomeip_v3::uid_t uid = 4003030;
vsomeip_v3::gid_t gid = 4003032;
}

TEST(get_clients, test)
{
    std::unique_ptr<vsomeip_v3::policy_manager_impl> security(new vsomeip_v3::policy_manager_impl);

    vsomeip_sec_client_t its_sec_client_uid_gid = utility::create_uds_client(uid, gid);

    // Local_clients has now one client(10).
    local_clients.insert(client_1);

    // Clients should be empty.
    EXPECT_TRUE(clients.empty());

    // Should do nothing because there is not a client to uid_gid mapping yet.
    security->get_clients(uid, gid, clients);

    // clients should still be empty.
    EXPECT_TRUE(clients.empty());

    // Stores client to uid_gid_mapping.
    security->store_client_to_sec_client_mapping(client_1, &its_sec_client_uid_gid);
    security->get_clients(uid, gid, clients);

    // Clients and local_clients should be equal and have the same client(10).
    EXPECT_EQ(clients, local_clients);

    // Repeat with two more clients.
    security->store_client_to_sec_client_mapping(client_2, &its_sec_client_uid_gid);
    security->store_client_to_sec_client_mapping(client_3, &its_sec_client_uid_gid);

    local_clients.insert(client_2);
    local_clients.insert(client_3);

    security->get_clients(uid, gid, clients);

    // Clients and local_clients should be equal and have the same 3 clients(10,11,12).
    EXPECT_EQ(clients, local_clients);
}