summaryrefslogtreecommitdiffstats
path: root/csarvalidation/python/test/test_FileManager.py
blob: 0b6f41367a261e1558f9f435fcfb8a2cbaf411cf (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
# ============LICENSE_START====================================
# vnfsdk-validation
# =========================================================
# Copyright (C) 2021 Nokia. 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.
# ============LICENSE_END=====================================

import os
import shutil
import unittest
import application_configuration
import assertion

from validation.FileManager import FileManager
from validation.rules.ActiveRulesTableGenerator import ActiveRulesTableGenerator
from validation.rules.providers.ActiveRulesProvider import ActiveRulesProvider
from validation.rules.providers.RulesDescriptionsProvider import RulesDescriptionsProvider

OUTPUT_DIRECTORY = './active_rules_table_generator_test/'

TABLE_WITH_VNF_RULES = OUTPUT_DIRECTORY + 'VnfActiveRulesTable.csv'
TABLE_WITH_PNF_RULES = OUTPUT_DIRECTORY + 'PnfActiveRulesTable.csv'


class FileManagerTest(unittest.TestCase):


    @staticmethod
    def generate_tables_with_active_rules(requs_tags: list) -> list:
        return ActiveRulesTableGenerator(
            [
                RulesDescriptionsProvider(application_configuration.RULE_DESCRIPTION_SOL001_PATH,
                                          application_configuration.RULE_DESCRIPTION_FILE_NAME_PATTERN),
                RulesDescriptionsProvider(application_configuration.RULE_DESCRIPTION_SOL004_PATH,
                                          application_configuration.RULE_DESCRIPTION_FILE_NAME_PATTERN)
            ],
            ActiveRulesProvider(application_configuration.VNFREWS_PROPERTIES_PATH)
        ).generate_active_validation_rule_tables(requs_tags)

    def generate_and_save_tables(self):
        tables = self.generate_tables_with_active_rules([application_configuration.VNF_REQS_TAG,
                                                         application_configuration.PNF_REQS_TAG])
        file_manager = FileManager(OUTPUT_DIRECTORY)
        file_manager.save_rule_table(
            tables[0].get_table_in_csv_format(values_separator=
                                              application_configuration.CSV_DELIMITER),
            TABLE_WITH_VNF_RULES
        )
        file_manager.save_rule_table(
            tables[1].get_table_in_csv_format(values_separator=
                                              application_configuration.CSV_DELIMITER),
            TABLE_WITH_PNF_RULES
        )

    def tearDown(self):
        shutil.rmtree(OUTPUT_DIRECTORY)

    def test_generate_and_save_table_with_active_rules(self):
        self.generate_and_save_tables()
        self.assertTrue(os.path.isdir(OUTPUT_DIRECTORY))

        self.assertTrue(os.path.isfile(TABLE_WITH_VNF_RULES))
        with open(TABLE_WITH_VNF_RULES, 'r') as vnf_rules:
            self.validate_csv_table_with_rules(vnf_rules)

        self.assertTrue(os.path.isfile(TABLE_WITH_PNF_RULES))
        with open(TABLE_WITH_PNF_RULES, 'r') as pnf_rules:
            self.validate_csv_table_with_rules(pnf_rules)

    def validate_csv_table_with_rules(self, vnf_rules):
        releases = application_configuration.get_releases(application_configuration.VNFREWS_PROPERTIES_PATH)
        lines = vnf_rules.read().splitlines()
        for line in lines:
            assertion.verify_that_cvc_line_is_valid(self, line, releases, application_configuration.CSV_DELIMITER)


if __name__ == '__main__':
    unittest.main()