summaryrefslogtreecommitdiff
path: root/tests/test_db.cpp
blob: 31e7bf6b4472850f4cf40f5d4c868f928d32645a (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
 * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */
/*
 * @file        test_db.cpp
 * @author      Janusz Kozerski (j.kozerski@samsung.com)
 * @version     1.0
 * @brief       Database tests
 */

#define BOOST_TEST_MODULE CERT_CHECKER_TESTS
#include <boost/test/unit_test.hpp>
#include <string>

#include <cchecker/log.h>
#include <dbfixture.h>
#include <app_event_operators.h>

BOOST_FIXTURE_TEST_SUITE(DB_TEST, DBFixture)

BOOST_AUTO_TEST_CASE(DB_app_positive) {

    std::list<app_t> buffer;
    app_t app1("app_1", "pkg_1", 5001, {});

    chain_t chain2 = {"cert2"};
    app_t app2("app_2", "pkg 2", 5002, {chain2});

    chain_t chain2r = {"cert2r"};
    app_t app2r("app_2_remove", "pkg 2", 5002, {chain2, chain2r});

    chain_t chain31 = {"cert_3.1", "cert 3.2"};
    chain_t chain32 = {"cert_3.1"};
    app_t app3("app 3", "pkg 3", 5003, {chain31, chain32});

    chain_t chain41 = {"cert_4.1", "cert 4.2"};
    chain_t chain42 = {"cert_4.2.1", "cert 4.2.2", "cert 4.2.3"};
    chain_t chain43 = {"cert_4.3.1"};

    app_t app4("app 4", "pkg 4", 5004, {chain41, chain42, chain43});

    BOOST_REQUIRE(add_app_to_check_list(app1)==true);
    BOOST_REQUIRE(add_app_to_check_list(app2)==true);
    BOOST_REQUIRE(add_app_to_check_list(app2r)==true);
    BOOST_REQUIRE(add_app_to_check_list(app3)==true);
    BOOST_REQUIRE(add_app_to_check_list(app4)==true);

    mark_as_verified(app2, app_t::verified_t::NO);
    mark_as_verified(app3, app_t::verified_t::YES);
    remove_app_from_check_list(app2r);

    app2.verified = app_t::verified_t::NO;
    app3.verified = app_t::verified_t::YES;

    std::list<app_t> buffer_ok = {app1, app2, app3, app4};

    get_app_list(buffer);

    // Need to sort buffer
    sort_buffer(buffer);
    sort_buffer(buffer_ok);

    BOOST_REQUIRE(buffer_ok == buffer);
}

BOOST_AUTO_TEST_CASE(DB_app_negative) {

    std::list<app_t> buffer;
    app_t app1("app_1", "pkg_1", 5001, {});

    chain_t chain2 = {"cert2"};
    app_t app2("app_2", "pkg 2", 5002, {chain2});

    chain_t chain2r = {"cert2r"};
    app_t app2r("app_2_remove", "pkg 2", 5002, {chain2, chain2r});

    chain_t chain31 = {"cert_3.1", "cert 3.2"};
    chain_t chain32 = {"cert_3.1"};
    app_t app3("app 3", "pkg 3", 5003, {chain31, chain32});

    chain_t chain41 = {"cert_4.1", "cert 4.2"};
    chain_t chain42 = {"cert_4.2.1", "cert 4.2.2", "cert 4.2.3"};
    chain_t chain43 = {"cert_4.3.1"};

    app_t app4("app 4", "pkg 4", 5004, {chain41, chain42, chain43});

    BOOST_REQUIRE(add_app_to_check_list(app1)==true);
    BOOST_REQUIRE(add_app_to_check_list(app2)==true);
    BOOST_REQUIRE(add_app_to_check_list(app2r)==true);
    // Skipp adding app3 to database
    BOOST_REQUIRE(add_app_to_check_list(app4)==true);

    mark_as_verified(app2, app_t::verified_t::NO);
    mark_as_verified(app3, app_t::verified_t::YES);
    remove_app_from_check_list(app2r);

    app2.verified = app_t::verified_t::NO;
    app3.verified = app_t::verified_t::YES;

    std::list<app_t> buffer_ok = {app1, app2, app3, app4};

    get_app_list(buffer);

    // list has to be sorted before comparison.
    sort_buffer(buffer);
    sort_buffer(buffer_ok);
    BOOST_REQUIRE(buffer_ok != buffer);
}

BOOST_AUTO_TEST_SUITE_END()