mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-18 12:06:08 +00:00
aa0564e8f3
Instead of using the default yaml loader make sure to use our customised loader. Also move the loading stage into our test cases as this should be part of the test case to ensure that it functions for the individual test case.
214 lines
6.3 KiB
Python
214 lines
6.3 KiB
Python
# Copyright 2013-2018 ARM Limited
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
|
|
# pylint: disable=E0611
|
|
# pylint: disable=R0201
|
|
import os
|
|
import sys
|
|
from collections import defaultdict
|
|
from unittest import TestCase
|
|
|
|
from nose.tools import assert_equal, assert_in, raises, assert_true
|
|
|
|
|
|
DATA_DIR = os.path.join(os.path.dirname(__file__), 'data')
|
|
os.environ['WA_USER_DIRECTORY'] = os.path.join(DATA_DIR, 'includes')
|
|
|
|
from wa.framework.configuration.execution import ConfigManager
|
|
from wa.framework.configuration.parsers import AgendaParser
|
|
from wa.framework.exception import ConfigError
|
|
from wa.utils.serializer import yaml
|
|
from wa.utils.types import reset_all_counters
|
|
|
|
|
|
YAML_TEST_FILE = os.path.join(DATA_DIR, 'test-agenda.yaml')
|
|
YAML_BAD_SYNTAX_FILE = os.path.join(DATA_DIR, 'bad-syntax-agenda.yaml')
|
|
INCLUDES_TEST_FILE = os.path.join(DATA_DIR, 'includes', 'agenda.yaml')
|
|
|
|
invalid_agenda_text = """
|
|
workloads:
|
|
- id: 1
|
|
workload_parameters:
|
|
test: 1
|
|
"""
|
|
|
|
duplicate_agenda_text = """
|
|
global:
|
|
iterations: 1
|
|
workloads:
|
|
- id: 1
|
|
workload_name: antutu
|
|
workload_parameters:
|
|
test: 1
|
|
- id: "1"
|
|
workload_name: benchmarkpi
|
|
"""
|
|
|
|
short_agenda_text = """
|
|
workloads: [antutu, dhrystone, benchmarkpi]
|
|
"""
|
|
|
|
default_ids_agenda_text = """
|
|
workloads:
|
|
- antutu
|
|
- id: wk1
|
|
name: benchmarkpi
|
|
- id: test
|
|
name: dhrystone
|
|
params:
|
|
cpus: 1
|
|
- vellamo
|
|
"""
|
|
|
|
sectioned_agenda_text = """
|
|
sections:
|
|
- id: sec1
|
|
runtime_params:
|
|
dp: one
|
|
workloads:
|
|
- name: antutu
|
|
workload_parameters:
|
|
markers_enabled: True
|
|
- benchmarkpi
|
|
- name: dhrystone
|
|
runtime_params:
|
|
dp: two
|
|
- id: sec2
|
|
runtime_params:
|
|
dp: three
|
|
workloads:
|
|
- antutu
|
|
workloads:
|
|
- memcpy
|
|
"""
|
|
|
|
dup_sectioned_agenda_text = """
|
|
sections:
|
|
- id: sec1
|
|
workloads:
|
|
- antutu
|
|
- id: sec1
|
|
workloads:
|
|
- benchmarkpi
|
|
workloads:
|
|
- memcpy
|
|
"""
|
|
|
|
|
|
class AgendaTest(TestCase):
|
|
|
|
def setUp(self):
|
|
reset_all_counters()
|
|
self.config = ConfigManager()
|
|
self.parser = AgendaParser()
|
|
|
|
def test_yaml_load(self):
|
|
self.parser.load_from_path(self.config, YAML_TEST_FILE)
|
|
assert_equal(len(self.config.jobs_config.root_node.workload_entries), 4)
|
|
|
|
def test_duplicate_id(self):
|
|
duplicate_agenda = yaml.load(duplicate_agenda_text)
|
|
|
|
try:
|
|
self.parser.load(self.config, duplicate_agenda, 'test')
|
|
except ConfigError as e:
|
|
assert_in('duplicate', e.message.lower()) # pylint: disable=E1101
|
|
else:
|
|
raise Exception('ConfigError was not raised for an agenda with duplicate ids.')
|
|
|
|
def test_yaml_missing_field(self):
|
|
invalid_agenda = yaml.load(invalid_agenda_text)
|
|
|
|
try:
|
|
self.parser.load(self.config, invalid_agenda, 'test')
|
|
except ConfigError as e:
|
|
assert_in('workload name', e.message)
|
|
else:
|
|
raise Exception('ConfigError was not raised for an invalid agenda.')
|
|
|
|
def test_defaults(self):
|
|
short_agenda = yaml.load(short_agenda_text)
|
|
self.parser.load(self.config, short_agenda, 'test')
|
|
|
|
workload_entries = self.config.jobs_config.root_node.workload_entries
|
|
assert_equal(len(workload_entries), 3)
|
|
assert_equal(workload_entries[0].config['workload_name'], 'antutu')
|
|
assert_equal(workload_entries[0].id, 'wk1')
|
|
|
|
def test_default_id_assignment(self):
|
|
default_ids_agenda = yaml.load(default_ids_agenda_text)
|
|
|
|
self.parser.load(self.config, default_ids_agenda, 'test2')
|
|
workload_entries = self.config.jobs_config.root_node.workload_entries
|
|
assert_equal(workload_entries[0].id, 'wk2')
|
|
assert_equal(workload_entries[3].id, 'wk3')
|
|
|
|
def test_sections(self):
|
|
sectioned_agenda = yaml.load(sectioned_agenda_text)
|
|
self.parser.load(self.config, sectioned_agenda, 'test')
|
|
|
|
root_node_workload_entries = self.config.jobs_config.root_node.workload_entries
|
|
leaves = list(self.config.jobs_config.root_node.leaves())
|
|
section1_workload_entries = leaves[0].workload_entries
|
|
section2_workload_entries = leaves[0].workload_entries
|
|
|
|
assert_equal(root_node_workload_entries[0].config['workload_name'], 'memcpy')
|
|
assert_true(section1_workload_entries[0].config['workload_parameters']['markers_enabled'])
|
|
assert_equal(section2_workload_entries[0].config['workload_name'], 'antutu')
|
|
|
|
@raises(ConfigError)
|
|
def test_dup_sections(self):
|
|
dup_sectioned_agenda = yaml.load(dup_sectioned_agenda_text)
|
|
self.parser.load(self.config, dup_sectioned_agenda, 'test')
|
|
|
|
@raises(ConfigError)
|
|
def test_bad_syntax(self):
|
|
self.parser.load_from_path(self.config, YAML_BAD_SYNTAX_FILE)
|
|
|
|
|
|
class FakeTargetManager:
|
|
|
|
def merge_runtime_parameters(self, params):
|
|
return params
|
|
|
|
def validate_runtime_parameters(self, params):
|
|
pass
|
|
|
|
|
|
class IncludesTest(TestCase):
|
|
|
|
def test_includes(self):
|
|
from pprint import pprint
|
|
parser = AgendaParser()
|
|
cm = ConfigManager()
|
|
tm = FakeTargetManager()
|
|
|
|
includes = parser.load_from_path(cm, INCLUDES_TEST_FILE)
|
|
include_set = set([os.path.basename(i) for i in includes])
|
|
assert_equal(include_set,
|
|
set(['test.yaml', 'section1.yaml', 'section2.yaml',
|
|
'section-include.yaml', 'workloads.yaml']))
|
|
|
|
job_classifiers = {j.id: j.classifiers
|
|
for j in cm.jobs_config.generate_job_specs(tm)}
|
|
assert_equal(job_classifiers,
|
|
{
|
|
's1-wk1': {'section': 'one'},
|
|
's2-wk1': {'section': 'two', 'included': True},
|
|
's1-wk2': {'section': 'one', 'memcpy': True},
|
|
's2-wk2': {'section': 'two', 'included': True, 'memcpy': True},
|
|
})
|