-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_config.py
40 lines (34 loc) · 1.29 KB
/
test_config.py
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
#import the main config library
from autosubmitconfigparser.config.configcommon import AutosubmitConfig
import os
import pytest
pytest.skip("Run manually.", allow_module_level=True)
# Init the configuration object where expid = experiment identifier that you want to load
expid = "a00e"
as_conf = AutosubmitConfig("a00e")
# This will load the data from the experiment
as_conf.reload(True)
#all data is stored in the as_conf.experiment_data dictionary
as_conf.experiment_data
# Obtain only section data
as_conf.jobs_data
# Obtain only platforms data
as_conf.platforms_data
# Obtain all data in parameter format( %SECTION%.%SUBSECTION%.%SUBSECTION% )
parameters = as_conf.deep_parameters_export(as_conf.experiment_data)
# To parse the placeholders from a file use the following function
#write sample text
with open("as_sample.txt", "w") as f:
f.write("This is a sample text with a placeholder %DEFAULT.EXPID%")
#write the parsed text
with open("as_sample_parsed.txt", "w") as f:
f.write(as_conf.parse_placeholders(open("as_sample.txt","r").read(), parameters))
# print the file content
with open("as_sample.txt", "r") as f:
print(f.read())
# print the file content
with open("as_sample_parsed.txt", "r") as f:
print(f.read())
# delete samples
os.remove("as_sample.txt")
os.remove("as_sample_parsed.txt")