-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnegotiation_test.py
157 lines (104 loc) · 4.67 KB
/
negotiation_test.py
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#!/bin/python3
from negotiation import match, matching, negotiation, analysis, planning, execution, dynamicTrust
from dataset_generator import generateTrustData, generateRequirement, generatePolicy, generateService, generateChange
import pytest
import const
# TEST FOR match FUNCTION
# create parameters list
matchParams = []
for i in range(5):
matchParams.append((generateTrustData(const.SD_PROBABILITIES[0]), generateRequirement(const.REQUIREMENT_PROBABILITIES[0]['REQUIREMENTS'], const.REQUIREMENT_PROBABILITIES[0]['CARDINALITY'])[0], True))
# test function
@pytest.mark.parametrize("sd, r, c", matchParams)
def test_match(sd, r, c):
"""
To test match check if the result is a boolean value
"""
assert match(sd, r, c) in [True, False]
# TEST FOR matching FUNCTION
# create parameters list
matchingParams = []
for i in range(5):
matchingParams.append(([[generateTrustData(const.SD_PROBABILITIES[0])]], [generateRequirement(const.REQUIREMENT_PROBABILITIES[0]['REQUIREMENTS'], const.REQUIREMENT_PROBABILITIES[0]['CARDINALITY'])]))
# test function
@pytest.mark.parametrize("sds, req", matchingParams)
def test_matching(sds, req):
"""
To test matching check that the retrieved satisfaction is in the interval [0, 1]
"""
sat = matching(sds, req)
assert sat <= 1 and sat >= 0
# TEST FOR negotiation FUNCTION
# create parameters list
negotiationParams = []
for i in range(5):
services = []
for j in range(5):
s = generateService(j, 5, const.SD_PROBABILITIES[0], const.REQUIREMENT_PROBABILITIES[0]['REQUIREMENTS'], const.REQUIREMENT_PROBABILITIES[0]['CARDINALITY'], const.REQUIREMENT_PROBABILITIES[0]['POLICY'])
services.append(s)
negotiationParams.append(services)
# test function
@pytest.mark.parametrize("services_", negotiationParams)
def test_negotiation(services_):
"""
To test negotiation check that:
- Every entry of the resulting list have 2 values (the service and its satisfaction degree)
- The satisfaction of every service is in the interval [0, 1]
- the returned service is a dict
- the number of services that join the system must be at least 1 and no bigger than the services that made a request
"""
system = negotiation(services_)
for n in system:
assert len(n) == 2
assert 0 <= n[1] <= 1
assert isinstance(n[0], dict)
assert 0 <= len(system) <= len(services)
# TEST FOR analysis FUNCTION
# create parameters list
analysisParams = []
for i in range(5):
services = []
for j in range(5):
s = generateService(j, 5, const.SD_PROBABILITIES[0], const.REQUIREMENT_PROBABILITIES[0]['REQUIREMENTS'], const.REQUIREMENT_PROBABILITIES[0]['CARDINALITY'], const.REQUIREMENT_PROBABILITIES[0]['POLICY'])
s['change'] = generateChange(s, [1])
services.append([s, 0.6])
analysisParams.append((services[0], services))
@pytest.mark.parametrize("service, services_", analysisParams)
def test_analysis(service, services_):
res = analysis(service, services_)
assert res[0] is True or res[0] is False
@pytest.mark.parametrize("service, services_", analysisParams)
def test_planning(service, services_):
res = planning(service, services_)
assert res is True or res is False
@pytest.mark.parametrize("service, services_", analysisParams)
def test_execution(service, services_):
old_l = len(services_)
res = execution(True, service, services_)
assert len(services) > 0
assert len(services) <= old_l
# TEST FOR dynamicTrust FUNCTION
# create parameters list
dynamicTrustParams = []
for i in range(5):
services = []
for j in range(5):
s = generateService(j, 5, const.SD_PROBABILITIES[0], const.REQUIREMENT_PROBABILITIES[0]['REQUIREMENTS'], const.REQUIREMENT_PROBABILITIES[0]['CARDINALITY'], const.REQUIREMENT_PROBABILITIES[0]['POLICY'])
s['change'] = generateChange(s, [1])
services.append([s, 0.6])
dynamicTrustParams.append(services)
# test function
@pytest.mark.parametrize("system", dynamicTrustParams)
def test_dynamicTrust(system):
"""
To test dynamicTrust check that:
- Every entry of the resulting list have 2 values (the service and its satisfaction degree)
- The satisfaction of every service is in the interval bigger than the lowest value of its policy
- the returned service is a dict
- the number of services in the system is equal or minor of the number of services before the change
"""
lenSys = len(system)
upd_system = dynamicTrust(system)
assert len(upd_system) <= lenSys
for n in upd_system[1]:
assert n[1] >= n[0]['policy'][0]