qa_server 7.3.0 → 7.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.rubocop_fixme.yml +3 -0
- data/.travis.yml +4 -5
- data/CHANGELOG.md +45 -0
- data/Rakefile +1 -1
- data/app/assets/stylesheets/qa_server/_check-status.scss +36 -0
- data/app/cache_processors/qa_server/cache_expiry_service.rb +8 -8
- data/app/cache_processors/qa_server/job_id_cache.rb +4 -4
- data/app/cache_processors/qa_server/performance_cache.rb +34 -34
- data/app/cache_processors/qa_server/performance_day_graph_cache.rb +7 -7
- data/app/cache_processors/qa_server/performance_month_graph_cache.rb +7 -7
- data/app/cache_processors/qa_server/performance_year_graph_cache.rb +7 -7
- data/app/cache_processors/qa_server/scenario_history_cache.rb +7 -7
- data/app/cache_processors/qa_server/scenario_history_graph_cache.rb +7 -7
- data/app/cache_processors/qa_server/scenario_run_cache.rb +7 -7
- data/app/cache_processors/qa_server/scenario_run_failures_cache.rb +7 -7
- data/app/cache_processors/qa_server/scenario_run_summary_cache.rb +7 -7
- data/app/controllers/concerns/qa_server/authority_validation_behavior.rb +49 -44
- data/app/controllers/qa_server/check_status_controller.rb +92 -22
- data/app/controllers/qa_server/fetch_controller.rb +36 -36
- data/app/controllers/qa_server/monitor_status_controller.rb +106 -84
- data/app/jobs/qa_server/history_graph_job.rb +10 -10
- data/app/jobs/qa_server/monitor_tests_job.rb +17 -17
- data/app/jobs/qa_server/performance_day_graph_job.rb +21 -21
- data/app/jobs/qa_server/performance_month_graph_job.rb +21 -21
- data/app/jobs/qa_server/performance_per_byte_job.rb +85 -0
- data/app/jobs/qa_server/performance_year_graph_job.rb +21 -21
- data/app/loggers/qa_server/scenario_logger.rb +74 -4
- data/app/models/concerns/qa_server/performance_history_data_keys.rb +8 -0
- data/app/models/qa_server/authority_scenario.rb +4 -4
- data/app/models/qa_server/authority_status.rb +2 -2
- data/app/models/qa_server/authority_status_failure.rb +1 -1
- data/app/models/qa_server/performance_history.rb +2 -2
- data/app/models/qa_server/scenario_run_history.rb +63 -54
- data/app/models/qa_server/scenario_run_registry.rb +2 -2
- data/app/models/qa_server/scenarios.rb +26 -26
- data/app/models/qa_server/search_scenario.rb +24 -13
- data/app/models/qa_server/term_scenario.rb +29 -29
- data/app/prepends/prepended_linked_data/find_term.rb +40 -40
- data/app/prepends/prepended_linked_data/search_query.rb +36 -36
- data/app/prepends/prepended_rdf/rdf_graph.rb +7 -7
- data/app/presenters/concerns/qa_server/monitor_status/performance_datatable_behavior.rb +32 -32
- data/app/presenters/concerns/qa_server/monitor_status/performance_graph_behavior.rb +64 -64
- data/app/presenters/qa_server/check_status_presenter.rb +63 -7
- data/app/presenters/qa_server/monitor_status/current_status_presenter.rb +9 -8
- data/app/presenters/qa_server/monitor_status/history_presenter.rb +5 -2
- data/app/services/concerns/qa_server/gruff_graph.rb +16 -16
- data/app/services/qa_server/authority_loader_service.rb +14 -14
- data/app/services/qa_server/authority_validator_service.rb +1 -0
- data/app/services/qa_server/database_migrator.rb +14 -14
- data/app/services/qa_server/history_graphing_service.rb +30 -30
- data/app/services/qa_server/performance_calculator_service.rb +80 -80
- data/app/services/qa_server/performance_datatable_service.rb +35 -35
- data/app/services/qa_server/performance_graph_data_service.rb +27 -27
- data/app/services/qa_server/performance_graphing_service.rb +55 -55
- data/app/services/qa_server/performance_per_byte_calculator_service.rb +88 -0
- data/app/services/qa_server/performance_per_byte_data_service.rb +41 -0
- data/app/services/qa_server/scenarios_loader_service.rb +1 -1
- data/app/services/qa_server/time_period_service.rb +21 -21
- data/app/validators/qa_server/scenario_validator.rb +99 -87
- data/app/validators/qa_server/search_scenario_validator.rb +67 -61
- data/app/validators/qa_server/term_scenario_validator.rb +20 -15
- data/app/views/qa_server/check_status/index.html.erb +120 -24
- data/app/views/qa_server/monitor_status/_test_summary.html.erb +1 -1
- data/config/i18n-tasks.yml +133 -0
- data/config/locales/qa_server.en.yml +21 -5
- data/lib/generators/qa_server/assets_generator.rb +4 -4
- data/lib/generators/qa_server/templates/config/authorities/linked_data/cerl_ld4l_cache.json +2 -2
- data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_aat_ld4l_cache.json +62 -1
- data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_tgn_ld4l_cache.json +45 -11
- data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_ulan_ld4l_cache.json +104 -8
- data/lib/generators/qa_server/templates/config/authorities/linked_data/isni_ld4l_cache.json +90 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/ligatus_ld4l_cache.json +133 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo2_ld4l_cache.json +248 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo3_ld4l_cache.json +248 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo_ld4l_cache.json +4 -4
- data/lib/generators/qa_server/templates/config/authorities/linked_data/locvocabs_ld4l_cache.json +117 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/mesh_nlm_ld4l_cache.json +135 -3
- data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_direct.json +5 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_ld4l_cache.json +2 -4
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/agrovoc_direct_validation.yml +31 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/agrovoc_ld4l_cache_validation.yml +31 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/cerl_ld4l_cache_validation.yml +24 -12
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/dbpedia_ld4l_cache_validation.yml +33 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_direct_validation.yml +35 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_ld4l_cache_validation.yml +55 -5
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_aat_ld4l_cache_validation.yml +253 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_tgn_ld4l_cache_validation.yml +31 -1
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_ulan_ld4l_cache_validation.yml +38 -1
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/isni_ld4l_cache_validation.yml +10 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/ligatus_ld4l_cache_validation.yml +36 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locdemographics_ld4l_cache_validation.yml +69 -44
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locgenres_ld4l_cache_validation.yml +22 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_ld4l_cache_validation.yml +65 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo2_ld4l_cache_validation.yml +78 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo3_ld4l_cache_validation.yml +73 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo_ld4l_cache_validation.yml +71 -3
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locperformance_ld4l_cache_validation.yml +6 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locsubjects_ld4l_cache_validation.yml +30 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locvocabs_ld4l_cache_validation.yml +430 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/mesh_nlm_ld4l_cache_validation.yml +54 -1
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/nalt_ld4l_cache_validation.yml +37 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclc_fast_validation.yml +71 -5
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_direct_validation.yml +73 -2
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_ld4l_cache_validation.yml +73 -0
- data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/rda_registry_ld4l_cache_validation.yml +307 -0
- data/lib/qa_server/configuration.rb +28 -24
- data/lib/qa_server/version.rb +1 -1
- data/qa_server.gemspec +6 -5
- data/spec/feature/accuracy_spec.rb +32 -0
- data/spec/i18n_spec.rb +35 -0
- data/spec/spec_helper.rb +4 -0
- metadata +66 -17
@@ -70,14 +70,19 @@
|
|
70
70
|
},
|
71
71
|
"subauthorities": {
|
72
72
|
"topic": "oclc.topic",
|
73
|
+
"concept": "oclc.topic",
|
73
74
|
"geocoordinates": "oclc.geographic",
|
74
75
|
"geographic": "oclc.geographic",
|
76
|
+
"place": "oclc.geographic",
|
77
|
+
"event": "oclc.eventName",
|
75
78
|
"event_name": "oclc.eventName",
|
79
|
+
"meeting": "oclc.meeting",
|
76
80
|
"person": "oclc.personalName",
|
77
81
|
"personal_name": "oclc.personalName",
|
78
82
|
"organization": "oclc.corporateName",
|
79
83
|
"corporate_name": "oclc.corporateName",
|
80
84
|
"uniform_title": "oclc.uniformTitle",
|
85
|
+
"work": "oclc.uniformTitle",
|
81
86
|
"period": "oclc.period",
|
82
87
|
"form": "oclc.form",
|
83
88
|
"alt_lc": "oclc.altlc"
|
data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_ld4l_cache.json
CHANGED
@@ -91,14 +91,12 @@
|
|
91
91
|
"subauthorities": {
|
92
92
|
"concept": "Concept",
|
93
93
|
"event": "Event",
|
94
|
+
"meeting": "Meeting",
|
94
95
|
"person": "Person",
|
95
|
-
"personal_name": "Person",
|
96
96
|
"organization": "Organization",
|
97
|
-
"corporate_name": "Organization",
|
98
97
|
"place": "Place",
|
99
98
|
"intangible": "Intangible",
|
100
|
-
"work": "Work"
|
101
|
-
"creative_work": "Work"
|
99
|
+
"work": "Work"
|
102
100
|
}
|
103
101
|
}
|
104
102
|
}
|
@@ -2,8 +2,39 @@
|
|
2
2
|
authority:
|
3
3
|
service: direct
|
4
4
|
search:
|
5
|
+
#------------------
|
6
|
+
# Connection tests
|
7
|
+
#------------------
|
5
8
|
-
|
6
9
|
query: milk
|
10
|
+
#------------------
|
11
|
+
# Accuracy tests
|
12
|
+
#------------------
|
13
|
+
-
|
14
|
+
pending: true
|
15
|
+
query: extrakce rozpouštědlem
|
16
|
+
position: 5
|
17
|
+
subject_uri: "http://aims.fao.org/aos/agrovoc/c_28368"
|
18
|
+
replacements:
|
19
|
+
maxRecords: '20'
|
20
|
+
-
|
21
|
+
query: vodka
|
22
|
+
position: 1
|
23
|
+
subject_uri: "http://aims.fao.org/aos/agrovoc/c_23837"
|
24
|
+
replacements:
|
25
|
+
maxRecords: '1'
|
26
|
+
-
|
27
|
+
query: Mud Sunfish
|
28
|
+
position: 5
|
29
|
+
subject_uri: "http://aims.fao.org/aos/agrovoc/c_42559"
|
30
|
+
replacements:
|
31
|
+
maxRecords: '10'
|
32
|
+
-
|
33
|
+
query: Acantharchus pomotis
|
34
|
+
position: 1
|
35
|
+
subject_uri: "http://aims.fao.org/aos/agrovoc/c_42559"
|
36
|
+
replacements:
|
37
|
+
maxRecords: '10'
|
7
38
|
term:
|
8
39
|
-
|
9
40
|
identifier: "http://aims.fao.org/aos/agrovoc/c_9513"
|
@@ -1,10 +1,41 @@
|
|
1
|
+
# Supported subauthorities: none
|
1
2
|
---
|
2
3
|
authority:
|
3
4
|
service: ld4l_cache
|
4
5
|
context: true
|
5
6
|
search:
|
7
|
+
#------------------
|
8
|
+
# Connection tests
|
9
|
+
#------------------
|
6
10
|
-
|
7
11
|
query: milk
|
12
|
+
#------------------
|
13
|
+
# Accuracy tests
|
14
|
+
#------------------
|
15
|
+
-
|
16
|
+
query: extrakce rozpouštědlem
|
17
|
+
position: 5
|
18
|
+
subject_uri: "http://aims.fao.org/aos/agrovoc/c_28368"
|
19
|
+
replacements:
|
20
|
+
maxRecords: '20'
|
21
|
+
-
|
22
|
+
query: vodka
|
23
|
+
position: 1
|
24
|
+
subject_uri: "http://aims.fao.org/aos/agrovoc/c_23837"
|
25
|
+
replacements:
|
26
|
+
maxRecords: '1'
|
27
|
+
-
|
28
|
+
query: Mud Sunfish
|
29
|
+
position: 5
|
30
|
+
subject_uri: "http://aims.fao.org/aos/agrovoc/c_42559"
|
31
|
+
replacements:
|
32
|
+
maxRecords: '10'
|
33
|
+
-
|
34
|
+
query: Acantharchus pomotis
|
35
|
+
position: 1
|
36
|
+
subject_uri: "http://aims.fao.org/aos/agrovoc/c_42559"
|
37
|
+
replacements:
|
38
|
+
maxRecords: '10'
|
8
39
|
term:
|
9
40
|
-
|
10
41
|
identifier: 'http://aims.fao.org/aos/agrovoc/c_9513'
|
@@ -1,8 +1,15 @@
|
|
1
|
+
# Supported subauthorities:
|
2
|
+
# person
|
3
|
+
# corporate
|
4
|
+
# imprint
|
1
5
|
---
|
2
6
|
authority:
|
3
7
|
service: ld4l_cache
|
4
8
|
context: true
|
5
9
|
search:
|
10
|
+
#------------------
|
11
|
+
# Connection tests
|
12
|
+
#------------------
|
6
13
|
-
|
7
14
|
query: John Winters
|
8
15
|
-
|
@@ -14,27 +21,39 @@ search:
|
|
14
21
|
-
|
15
22
|
query: Typographia Plantiniana
|
16
23
|
subauth: corporate
|
24
|
+
#------------------
|
25
|
+
# Accuracy tests
|
26
|
+
#------------------
|
17
27
|
-
|
18
|
-
|
28
|
+
pending: true
|
29
|
+
query: Johannes Philippus de Lignamine
|
19
30
|
subauth: person
|
20
|
-
position:
|
31
|
+
position: 4
|
21
32
|
subject_uri: "http://thesaurus.cerl.org/record/cnp00372755"
|
22
33
|
replacements:
|
23
34
|
maxRecords: '8'
|
24
35
|
-
|
25
|
-
|
36
|
+
pending: true
|
37
|
+
query: Johannes Philippus de Lignamine
|
26
38
|
subauth: person
|
27
|
-
position:
|
39
|
+
position: 4
|
28
40
|
subject_uri: "http://thesaurus.cerl.org/record/cnp00895966"
|
29
41
|
replacements:
|
30
42
|
maxRecords: '8'
|
31
43
|
-
|
32
44
|
query: Jacob Winter
|
33
45
|
subauth: person
|
34
|
-
position:
|
46
|
+
position: 3
|
35
47
|
subject_uri: "http://thesaurus.cerl.org/record/cnp02081773"
|
36
48
|
replacements:
|
37
49
|
maxRecords: '8'
|
50
|
+
-
|
51
|
+
query: Typographia Plantiniana
|
52
|
+
subauth: corporate
|
53
|
+
position: 1
|
54
|
+
subject_uri: "http://thesaurus.cerl.org/record/cnc00011608"
|
55
|
+
replacements:
|
56
|
+
maxRecords: '8'
|
38
57
|
-
|
39
58
|
query: Jacob Winter
|
40
59
|
subauth: imprint
|
@@ -49,13 +68,6 @@ search:
|
|
49
68
|
subject_uri: "http://thesaurus.cerl.org/record/cni00007649"
|
50
69
|
replacements:
|
51
70
|
maxRecords: '8'
|
52
|
-
-
|
53
|
-
query: Typographia Plantiniana
|
54
|
-
subauth: corporate
|
55
|
-
position: 1
|
56
|
-
subject_uri: "http://thesaurus.cerl.org/record/cnc00011608"
|
57
|
-
replacements:
|
58
|
-
maxRecords: '8'
|
59
71
|
term:
|
60
72
|
-
|
61
73
|
identifier: "http://thesaurus.cerl.org/record/cnp00895966"
|
@@ -1,9 +1,42 @@
|
|
1
|
+
# Supported subauthorities: # TODO: I don't think these subauths are correct. Probably copy-paste error.
|
2
|
+
# person
|
3
|
+
# organization
|
4
|
+
# place
|
5
|
+
# intangible
|
6
|
+
# geocoordinates
|
7
|
+
# work
|
1
8
|
---
|
2
9
|
authority:
|
3
10
|
service: ld4l_cache
|
4
11
|
search:
|
12
|
+
#------------------
|
13
|
+
# Connection tests
|
14
|
+
#------------------
|
5
15
|
-
|
6
16
|
query: 'Barack Obama'
|
17
|
+
#------------------
|
18
|
+
# Accuracy tests
|
19
|
+
#------------------
|
20
|
+
-
|
21
|
+
query: Volleyball
|
22
|
+
position: 5
|
23
|
+
subject_uri: "http://dbpedia.org/resource/Volleyball"
|
24
|
+
replacements:
|
25
|
+
maxRecords: '10'
|
26
|
+
-
|
27
|
+
pending: true
|
28
|
+
query: Volleyb
|
29
|
+
position: 5
|
30
|
+
subject_uri: "http://dbpedia.org/resource/Volleyball"
|
31
|
+
replacements:
|
32
|
+
maxRecords: '10'
|
33
|
+
-
|
34
|
+
pending: true
|
35
|
+
query: volleyb
|
36
|
+
position: 5
|
37
|
+
subject_uri: "http://dbpedia.org/resource/Volleyball"
|
38
|
+
replacements:
|
39
|
+
maxRecords: '10'
|
7
40
|
term:
|
8
41
|
-
|
9
42
|
identifier: 'http://dbpedia.org/resource/Barack_Obama'
|
@@ -2,8 +2,43 @@
|
|
2
2
|
authority:
|
3
3
|
service: direct
|
4
4
|
search:
|
5
|
+
#------------------
|
6
|
+
# Connection tests
|
7
|
+
#------------------
|
5
8
|
-
|
6
9
|
query: Ithaca
|
10
|
+
#------------------
|
11
|
+
# Accuracy tests
|
12
|
+
#------------------
|
13
|
+
-
|
14
|
+
pending: true
|
15
|
+
query: France
|
16
|
+
subject_uri: 'http://sws.geonames.org/261707/'
|
17
|
+
position: 10
|
18
|
+
replacements:
|
19
|
+
maxRecords: '15'
|
20
|
+
-
|
21
|
+
pending: true
|
22
|
+
query: New York
|
23
|
+
subject_uri: "http://sws.geonames.org/5128581/"
|
24
|
+
position: 3
|
25
|
+
replacements:
|
26
|
+
maxRecords: '8'
|
27
|
+
-
|
28
|
+
pending: true
|
29
|
+
query: Chicago
|
30
|
+
subject_uri: 'http://sws.geonames.org/4887398/'
|
31
|
+
position: 10
|
32
|
+
replacements:
|
33
|
+
maxRecords: '15'
|
34
|
+
-
|
35
|
+
pending: true
|
36
|
+
query: Ithaca Island
|
37
|
+
subauth: terrain
|
38
|
+
subject_uri: "http://sws.geonames.org/261707/"
|
39
|
+
position: 10
|
40
|
+
replacements:
|
41
|
+
maxRecords: '15'
|
7
42
|
term:
|
8
43
|
-
|
9
44
|
identifier: 'https://sws.geonames.org/261707/'
|
@@ -1,15 +1,25 @@
|
|
1
|
+
# Supported subauthorities:
|
2
|
+
# area
|
3
|
+
# place
|
4
|
+
# area_and_place
|
5
|
+
# water
|
6
|
+
# park
|
7
|
+
# road
|
8
|
+
# spot
|
9
|
+
# terrain
|
10
|
+
# undersea
|
11
|
+
# vegetation
|
12
|
+
# all
|
1
13
|
---
|
2
14
|
authority:
|
3
15
|
service: ld4l_cache
|
4
16
|
context: true
|
5
17
|
search:
|
18
|
+
#------------------
|
19
|
+
# Connection tests
|
20
|
+
#------------------
|
6
21
|
-
|
7
22
|
query: Ithaca
|
8
|
-
-
|
9
|
-
query: France
|
10
|
-
subauth: area
|
11
|
-
expect: 'http://sws.geonames.org/261707/'
|
12
|
-
postion: 10
|
13
23
|
-
|
14
24
|
query: Ithaca
|
15
25
|
subauth: place
|
@@ -38,6 +48,46 @@ search:
|
|
38
48
|
-
|
39
49
|
query: Red
|
40
50
|
subauth: vegetation
|
51
|
+
#------------------
|
52
|
+
# Accuracy tests
|
53
|
+
#------------------
|
54
|
+
# TBD - tests for subauths
|
55
|
+
# area_and_place
|
56
|
+
# water
|
57
|
+
# park
|
58
|
+
# road
|
59
|
+
# spot
|
60
|
+
# terrain
|
61
|
+
# undersea
|
62
|
+
# vegetation
|
63
|
+
# all
|
64
|
+
-
|
65
|
+
query: New York City
|
66
|
+
subject_uri: "http://sws.geonames.org/5128581/"
|
67
|
+
position: 3
|
68
|
+
replacements:
|
69
|
+
maxRecords: '8'
|
70
|
+
-
|
71
|
+
query: France
|
72
|
+
subauth: area
|
73
|
+
subject_uri: "http://sws.geonames.org/3017382/"
|
74
|
+
position: 10
|
75
|
+
replacements:
|
76
|
+
maxRecords: '15'
|
77
|
+
-
|
78
|
+
query: Chicago
|
79
|
+
subauth: place
|
80
|
+
subject_uri: "http://sws.geonames.org/4887398/"
|
81
|
+
position: 10
|
82
|
+
replacements:
|
83
|
+
maxRecords: '15'
|
84
|
+
-
|
85
|
+
query: Ithaca Island
|
86
|
+
subauth: terrain
|
87
|
+
subject_uri: "http://sws.geonames.org/261707/"
|
88
|
+
position: 10
|
89
|
+
replacements:
|
90
|
+
maxRecords: '15'
|
41
91
|
term:
|
42
92
|
-
|
43
93
|
identifier: 'http://sws.geonames.org/261707/'
|
@@ -1,7 +1,41 @@
|
|
1
|
+
# Supported subauthorities:
|
2
|
+
# Activities
|
3
|
+
# Activities__Disciplines
|
4
|
+
# Activities__Events
|
5
|
+
# Activities__Functions
|
6
|
+
# Activities__Physical_and_Mental
|
7
|
+
# Activities__Processes_and_Techniques
|
8
|
+
# Agents
|
9
|
+
# Agents__Living_Organisms
|
10
|
+
# Agents__Organizations
|
11
|
+
# Agents__People
|
12
|
+
# Associated_Concepts
|
13
|
+
# Associated_Concepts__Associated_Concepts
|
14
|
+
# Brand_Names
|
15
|
+
# Brand_Names__Brand_Names
|
16
|
+
# Materials
|
17
|
+
# Materials__Materials
|
18
|
+
# Objects
|
19
|
+
# Objects__Built_Environment
|
20
|
+
# Objects__Components
|
21
|
+
# Objects__Furnishings_and_Equipment
|
22
|
+
# Objects__Object_Genres
|
23
|
+
# Objects__Object_Groupings and Systems
|
24
|
+
# Objects__Visual_and_Verbal_Communication
|
25
|
+
# Physical_Attributes
|
26
|
+
# Physical_Attributes__Attributes_and_Properties
|
27
|
+
# Physical_Attributes__Color
|
28
|
+
# Physical_Attributes__Conditions_and_Effects
|
29
|
+
# Physical_Attributes__Design_Elements
|
30
|
+
# Styles_and_Periods
|
31
|
+
# Styles_and_Periods__Styles_and_Periods
|
1
32
|
---
|
2
33
|
authority:
|
3
34
|
service: ld4l_cache
|
4
35
|
search:
|
36
|
+
#------------------
|
37
|
+
# Connection tests
|
38
|
+
#------------------
|
5
39
|
-
|
6
40
|
query: amphora
|
7
41
|
-
|
@@ -115,6 +149,225 @@ search:
|
|
115
149
|
query: Contemporary
|
116
150
|
subauth: Styles_and_Periods__Styles_and_Periods
|
117
151
|
result_size: 190
|
152
|
+
#------------------
|
153
|
+
# Accuracy tests
|
154
|
+
#------------------
|
155
|
+
-
|
156
|
+
query: precious
|
157
|
+
position: 5
|
158
|
+
subject_uri: "http://vocab.getty.edu/aat/300011054"
|
159
|
+
replacements:
|
160
|
+
maxRecords: '10'
|
161
|
+
-
|
162
|
+
query: demonstrations
|
163
|
+
subauth: Activities
|
164
|
+
position: 5
|
165
|
+
subject_uri: "http://vocab.getty.edu/aat/300262795"
|
166
|
+
replacements:
|
167
|
+
maxRecords: '10'
|
168
|
+
-
|
169
|
+
query: demonstrations
|
170
|
+
subauth: Activities__Events
|
171
|
+
position: 5
|
172
|
+
subject_uri: "http://vocab.getty.edu/aat/300262795"
|
173
|
+
replacements:
|
174
|
+
maxRecords: '10'
|
175
|
+
-
|
176
|
+
query: ontology
|
177
|
+
subauth: Activities__Disciplines
|
178
|
+
position: 5
|
179
|
+
subject_uri: "http://vocab.getty.edu/aat/300054295"
|
180
|
+
replacements:
|
181
|
+
maxRecords: '10'
|
182
|
+
-
|
183
|
+
query: lobbying
|
184
|
+
subauth: Activities__Functions
|
185
|
+
position: 5
|
186
|
+
subject_uri: "http://vocab.getty.edu/aat/300077524"
|
187
|
+
replacements:
|
188
|
+
maxRecords: '10'
|
189
|
+
-
|
190
|
+
query: bhāvanā
|
191
|
+
subauth: Activities__Physical_and_Mental
|
192
|
+
position: 5
|
193
|
+
subject_uri: "http://vocab.getty.edu/aat/300264364"
|
194
|
+
replacements:
|
195
|
+
maxRecords: '10'
|
196
|
+
-
|
197
|
+
query: gestabiliseerd
|
198
|
+
subauth: Activities__Processes_and_Techniques
|
199
|
+
position: 5
|
200
|
+
subject_uri: "http://vocab.getty.edu/aat/300163757"
|
201
|
+
replacements:
|
202
|
+
maxRecords: '10'
|
203
|
+
-
|
204
|
+
query: disidente
|
205
|
+
subauth: Agents
|
206
|
+
position: 5
|
207
|
+
subject_uri: "http://vocab.getty.edu/aat/300136713"
|
208
|
+
replacements:
|
209
|
+
maxRecords: '10'
|
210
|
+
-
|
211
|
+
query: RNA
|
212
|
+
subauth: Agents__Living_Organisms
|
213
|
+
position: 5
|
214
|
+
subject_uri: "http://vocab.getty.edu/aat/300410331"
|
215
|
+
replacements:
|
216
|
+
maxRecords: '10'
|
217
|
+
-
|
218
|
+
query: printmaking studios
|
219
|
+
subauth: Agents__Organizations
|
220
|
+
position: 5
|
221
|
+
subject_uri: "http://vocab.getty.edu/aat/300312299"
|
222
|
+
replacements:
|
223
|
+
maxRecords: '10'
|
224
|
+
-
|
225
|
+
query: alter egos
|
226
|
+
subauth: Agents__People
|
227
|
+
position: 5
|
228
|
+
subject_uri: "http://vocab.getty.edu/aat/300435335"
|
229
|
+
replacements:
|
230
|
+
maxRecords: '10'
|
231
|
+
-
|
232
|
+
query: credit
|
233
|
+
subauth: Associated_Concepts
|
234
|
+
position: 5
|
235
|
+
subject_uri: "http://vocab.getty.edu/aat/300055706"
|
236
|
+
replacements:
|
237
|
+
maxRecords: '10'
|
238
|
+
-
|
239
|
+
query: palindrome
|
240
|
+
subauth: Associated_Concepts__Associated_Concepts
|
241
|
+
position: 5
|
242
|
+
subject_uri: "http://vocab.getty.edu/aat/300417834"
|
243
|
+
replacements:
|
244
|
+
maxRecords: '10'
|
245
|
+
-
|
246
|
+
query: Crayola Cutter (TM)
|
247
|
+
subauth: Brand_Names
|
248
|
+
position: 5
|
249
|
+
subject_uri: "http://vocab.getty.edu/aat/300391344"
|
250
|
+
replacements:
|
251
|
+
maxRecords: '10'
|
252
|
+
-
|
253
|
+
query: Masonite
|
254
|
+
subauth: Brand_Names__Brand_Names
|
255
|
+
position: 5
|
256
|
+
subject_uri: "http://vocab.getty.edu/aat/300014205"
|
257
|
+
replacements:
|
258
|
+
maxRecords: '10'
|
259
|
+
-
|
260
|
+
query: mesh
|
261
|
+
subauth: Materials
|
262
|
+
position: 5
|
263
|
+
subject_uri: "http://vocab.getty.edu/aat/300014654"
|
264
|
+
replacements:
|
265
|
+
maxRecords: '10'
|
266
|
+
-
|
267
|
+
query: residuos tóxicos
|
268
|
+
subauth: Materials__Materials
|
269
|
+
position: 5
|
270
|
+
subject_uri: "http://vocab.getty.edu/aat/300253882"
|
271
|
+
replacements:
|
272
|
+
maxRecords: '10'
|
273
|
+
-
|
274
|
+
query: lloy lloy
|
275
|
+
subauth: Objects
|
276
|
+
position: 5
|
277
|
+
subject_uri: "http://vocab.getty.edu/aat/300410934"
|
278
|
+
replacements:
|
279
|
+
maxRecords: '10'
|
280
|
+
-
|
281
|
+
query: areas, protected
|
282
|
+
subauth: Objects__Built_Environment
|
283
|
+
position: 5
|
284
|
+
subject_uri: "http://vocab.getty.edu/aat/300386975"
|
285
|
+
replacements:
|
286
|
+
maxRecords: '10'
|
287
|
+
-
|
288
|
+
query: gewelfschotels
|
289
|
+
subauth: Objects__Components
|
290
|
+
position: 5
|
291
|
+
subject_uri: "http://vocab.getty.edu/aat/300391167"
|
292
|
+
replacements:
|
293
|
+
maxRecords: '10'
|
294
|
+
-
|
295
|
+
query: dung-chen
|
296
|
+
subauth: Objects__Furnishings_and_Equipment
|
297
|
+
position: 5
|
298
|
+
subject_uri: "http://vocab.getty.edu/aat/300222195"
|
299
|
+
replacements:
|
300
|
+
maxRecords: '10'
|
301
|
+
-
|
302
|
+
query: oggetti (realia)
|
303
|
+
subauth: Objects__Object_Genres
|
304
|
+
position: 5
|
305
|
+
subject_uri: "http://vocab.getty.edu/aat/300265419"
|
306
|
+
replacements:
|
307
|
+
maxRecords: '10'
|
308
|
+
-
|
309
|
+
query: VistaVision (TM)
|
310
|
+
subauth: Objects__Object_Groupings and Systems
|
311
|
+
position: 5
|
312
|
+
subject_uri: "http://vocab.getty.edu/aat/300264671"
|
313
|
+
replacements:
|
314
|
+
maxRecords: '10'
|
315
|
+
-
|
316
|
+
query: hours
|
317
|
+
subauth: Objects__Visual_and_Verbal_Communication
|
318
|
+
position: 5
|
319
|
+
subject_uri: "http://vocab.getty.edu/aat/300404017"
|
320
|
+
replacements:
|
321
|
+
maxRecords: '10'
|
322
|
+
-
|
323
|
+
query: serpentiformes
|
324
|
+
subauth: Physical_Attributes
|
325
|
+
position: 5
|
326
|
+
subject_uri: "http://vocab.getty.edu/aat/300311305"
|
327
|
+
replacements:
|
328
|
+
maxRecords: '10'
|
329
|
+
-
|
330
|
+
query: 不穩定性
|
331
|
+
subauth: Physical_Attributes__Attributes_and_Properties
|
332
|
+
position: 5
|
333
|
+
subject_uri: "http://vocab.getty.edu/aat/300221189"
|
334
|
+
replacements:
|
335
|
+
maxRecords: '10'
|
336
|
+
-
|
337
|
+
query: eggplant
|
338
|
+
subauth: Physical_Attributes__Color
|
339
|
+
position: 5
|
340
|
+
subject_uri: "http://vocab.getty.edu/aat/300311492"
|
341
|
+
replacements:
|
342
|
+
maxRecords: '10'
|
343
|
+
-
|
344
|
+
query: microwear
|
345
|
+
subauth: Physical_Attributes__Conditions_and_Effects
|
346
|
+
position: 5
|
347
|
+
subject_uri: "http://vocab.getty.edu/aat/300249983"
|
348
|
+
replacements:
|
349
|
+
maxRecords: '10'
|
350
|
+
-
|
351
|
+
query: filigrana
|
352
|
+
subauth: Physical_Attributes__Design_Elements
|
353
|
+
position: 5
|
354
|
+
subject_uri: "http://vocab.getty.edu/aat/300220293"
|
355
|
+
replacements:
|
356
|
+
maxRecords: '10'
|
357
|
+
-
|
358
|
+
query: Ontarian
|
359
|
+
subauth: Styles_and_Periods
|
360
|
+
position: 5
|
361
|
+
subject_uri: "http://vocab.getty.edu/aat/300386484"
|
362
|
+
replacements:
|
363
|
+
maxRecords: '10'
|
364
|
+
-
|
365
|
+
query: old-fashioned
|
366
|
+
subauth: Styles_and_Periods__Styles_and_Periods
|
367
|
+
position: 5
|
368
|
+
subject_uri: "http://vocab.getty.edu/aat/300312275"
|
369
|
+
replacements:
|
370
|
+
maxRecords: '10'
|
118
371
|
term:
|
119
372
|
-
|
120
373
|
identifier: 'http://vocab.getty.edu/aat/300265730'
|