You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.8 KiB
44 lines
1.8 KiB
# Copyright 2020 Red Hat, Inc. |
|
# |
|
# 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 unittest import mock |
|
from unittest import TestCase |
|
|
|
from validations_libs.tests import fakes |
|
from validations_libs.show import Show |
|
|
|
|
|
class TestValidatorShow(TestCase): |
|
|
|
def setUp(self): |
|
super(TestValidatorShow, self).setUp() |
|
|
|
@mock.patch('validations_libs.utils.parse_all_validations_on_disk', |
|
return_value=fakes.VALIDATIONS_LIST) |
|
@mock.patch('validations_libs.utils.get_validations_details', |
|
return_value=fakes.VALIDATIONS_DATA) |
|
@mock.patch('validations_libs.utils.parse_all_validations_logs_on_disk', |
|
return_value=fakes.VALIDATIONS_LOGS_CONTENTS_LIST) |
|
def test_validation_show(self, mock_parse_validation, mock_data, mock_log): |
|
data = {'Description': 'My Validation One Description', |
|
'Groups': ['prep', 'pre-deployment'], |
|
'ID': 'my_val1', |
|
'Name': 'My Validition One Name', |
|
'parameters': {}} |
|
data.update({'Last execution date': '2019-11-25 13:40:14', |
|
'Number of execution': 'Total: 1, Passed: 1, Failed: 0'}) |
|
validations_show = Show() |
|
out = validations_show.show_validations('foo') |
|
self.assertEqual(out, data)
|
|
|