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
|
# Copyright (c) 2018 Intel Corp. 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.
#
from vnfsdk_pkgtools import vnfreq
def check_result(reqid, reader, tosca, expected_fail_msg):
tester = vnfreq.get_vnfreq_tester(reqid)
tester.check(reader, tosca)
if expected_fail_msg:
assert isinstance(tester.err, vnfreq.VnfRequirementError)
assert expected_fail_msg in str(tester.err)
else:
assert tester.err == 0
def test_R66070(mocker):
reader = mocker.Mock()
reader.manifest = None
check_result('R-66070', reader, None, 'No manifest file found')
def test_R77707(mocker, tmpdir):
# check only manifest file - success
p1 = tmpdir.join("manifest.mf")
p1.write("manifest")
reader = mocker.Mock()
reader.destination = str(tmpdir)
reader.entry_manifest_file = "manifest.mf"
reader.manifest.digests = {}
check_result('R-77707', reader, None, None)
# check additional file - fail
p2 = tmpdir.mkdir('sub').join("non-existing")
p2.write("non existing")
check_result('R-77707', reader, None,
'Package component sub/non-existing not found in manifest file')
def test_R04298(mocker, tmpdir):
p1 = tmpdir.mkdir('tests').join('script.sh')
p1.write("#!/bin/sh")
reader = mocker.Mock()
reader.destination = str(tmpdir)
reader.entry_tests_dir = "tests"
check_result('R-04298', reader, None, None)
p1.remove()
check_result('R-04298', reader, None,
'No testing scripts found')
def test_R26881(mocker, tmpdir):
p1 = tmpdir.join('entry.yaml')
p1.write("")
p2 = tmpdir.join('image')
p2.write("")
reader = mocker.Mock()
reader.destination = str(tmpdir)
reader.entry_definitions = 'entry.yaml'
validator = mocker.Mock()
node = mocker.Mock()
validator.tosca.nodetemplates = [node]
node.entity_tpl = {'artifacts': {'sw_image': {'file': 'image',
'type': 'tosca.artifacts.nfv.SwImage',
}
}
}
check_result('R-26881', reader, validator, None)
def test_R35851(mocker):
validator = mocker.Mock()
node = mocker.Mock()
validator.tosca.nodetemplates = [node]
check_result('R-35851', None, validator, None)
|