aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/vTC/apexlake/tests/experiment_test.py
blob: 47d1fbb776124d98d4196b1bd847236d47ada772 (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
# Copyright (c) 2015 Intel Research and Development Ireland Ltd.
#
# 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.

__author__ = 'gpetralx'

import unittest
from experimental_framework import data_manager


class TestExperiment(unittest.TestCase):
    def setUp(self):
        self.exp = data_manager.Experiment('experiment_1')

    def tearDown(self):
        pass

    def test_add_experiment_metadata(self):
        with self.assertRaises(ValueError):
            self.exp.add_experiment_metadata('metadata')

        metadata = {
            'item_1': 'value_1',
            'item_2': 'value_2',
            'item_3': 'value_3'
        }
        self.exp.add_experiment_metadata(metadata)
        self.assertDictEqual(metadata, self.exp._metadata)
        self.assertDictEqual(metadata, self.exp.get_metadata())

    def test_experiment_configuration(self):
        with self.assertRaises(ValueError):
            self.exp.add_experiment_configuration('configuration')
        configuration = {
            'item_1': 'value_1',
            'item_2': 'value_2',
            'item_3': 'value_3'
        }
        self.exp.add_experiment_configuration(configuration)
        self.assertDictEqual(configuration, self.exp._configuration)
        self.assertDictEqual(configuration, self.exp.get_configuration())

    def test_add_benchmark(self):
        with self.assertRaises(ValueError):
            self.exp.add_benchmark(1)
        self.exp.add_benchmark('benchmark_1')
        self.assertListEqual(list(), self.exp._benchmarks['benchmark_1'])

    def test_add_datapoint(self):
        with self.assertRaises(ValueError):
            self.exp.add_data_point('benchmark_1', 'datapoint')

        data_point_1 = {
            'point_1': 'value_1',
            'point_2': 'value_2',
            'point_3': 'value_3'
        }

        with self.assertRaises(ValueError):
            self.exp.add_data_point('benchmark_1', data_point_1)

        self.exp.add_benchmark('benchmark_1')
        self.exp.add_data_point('benchmark_1', data_point_1)
        self.assertListEqual([data_point_1],
                             self.exp._benchmarks['benchmark_1'])

    def test_get_data_points(self):
        self.assertListEqual(list(), self.exp.get_data_points('benchmark_1'))
        data_point_1 = {
            'point_1': 'value_1',
            'point_2': 'value_2',
            'point_3': 'value_3'
        }
        self.exp.add_benchmark('benchmark_1')
        self.exp.add_data_point('benchmark_1', data_point_1)
        self.assertListEqual([data_point_1],
                             self.exp.get_data_points('benchmark_1'))

    def test_get_benchmarks(self):
        self.exp.add_benchmark('benchmark_1')
        self.exp.add_benchmark('benchmark_2')
        self.exp.add_benchmark('benchmark_3')
        expected = ['benchmark_3', 'benchmark_2', 'benchmark_1']
        self.assertListEqual(expected, self.exp.get_benchmarks())