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
@@ -0,0 +1,73 @@
|
|
1
|
+
# Supported subauthorities:
|
2
|
+
# person
|
3
|
+
# organization
|
4
|
+
# family
|
5
|
+
---
|
6
|
+
authority:
|
7
|
+
service: ld4l_cache
|
8
|
+
context: true
|
9
|
+
search:
|
10
|
+
#------------------
|
11
|
+
# Accuracy tests - part 3 (19-26)
|
12
|
+
#------------------
|
13
|
+
-
|
14
|
+
pending: true
|
15
|
+
query: ACLU
|
16
|
+
subauth: organization
|
17
|
+
position: 20
|
18
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79079580"
|
19
|
+
replacements:
|
20
|
+
maxRecords: '30'
|
21
|
+
-
|
22
|
+
query: University of Pennsylvania
|
23
|
+
subauth: organization
|
24
|
+
position: 5
|
25
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79065482"
|
26
|
+
replacements:
|
27
|
+
maxRecords: '20'
|
28
|
+
-
|
29
|
+
query: university of pennsylvania
|
30
|
+
subauth: organization
|
31
|
+
position: 5
|
32
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79065482"
|
33
|
+
replacements:
|
34
|
+
maxRecords: '20'
|
35
|
+
-
|
36
|
+
query: Planned Parenthood Federation of America
|
37
|
+
subauth: organization
|
38
|
+
position: 10
|
39
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n50075375"
|
40
|
+
replacements:
|
41
|
+
maxRecords: '20'
|
42
|
+
-
|
43
|
+
query: Genkai Shosetsu Kenkyukai
|
44
|
+
subauth: organization
|
45
|
+
position: 5
|
46
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n2013003006"
|
47
|
+
replacements:
|
48
|
+
maxRecords: '20'
|
49
|
+
-
|
50
|
+
query: Genkai Shōsetsu Kenkyūkai
|
51
|
+
subauth: organization
|
52
|
+
position: 5
|
53
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n2013003006"
|
54
|
+
replacements:
|
55
|
+
maxRecords: '20'
|
56
|
+
-
|
57
|
+
query: 限界小說研究会
|
58
|
+
subauth: organization
|
59
|
+
position: 5
|
60
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n2013003006"
|
61
|
+
replacements:
|
62
|
+
maxRecords: '20'
|
63
|
+
-
|
64
|
+
query: Waterman Family
|
65
|
+
subauth: family
|
66
|
+
result_size: 110
|
67
|
+
position: 5
|
68
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n2012043300"
|
69
|
+
replacements:
|
70
|
+
maxRecords: '10'
|
71
|
+
term:
|
72
|
+
-
|
73
|
+
identifier: 'http://id.loc.gov/rwo/agents/n79021164'
|
@@ -1,8 +1,15 @@
|
|
1
|
+
# Supported subauthorities:
|
2
|
+
# person
|
3
|
+
# organization
|
4
|
+
# family
|
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: 'mark twain'
|
8
15
|
-
|
@@ -12,16 +19,77 @@ search:
|
|
12
19
|
query: 'mark twain'
|
13
20
|
subauth: organization
|
14
21
|
-
|
15
|
-
query: '
|
22
|
+
query: 'waterman'
|
16
23
|
subauth: family
|
24
|
+
result_size: 100
|
25
|
+
#------------------
|
26
|
+
# Accuracy tests - Part 1 (1-9)
|
27
|
+
#------------------
|
17
28
|
-
|
18
|
-
query:
|
29
|
+
query: Twain, Mark, 1835-1910
|
19
30
|
subauth: person
|
20
31
|
position: 1
|
21
32
|
subject_uri: "http://id.loc.gov/rwo/agents/n79021164"
|
22
33
|
replacements:
|
23
34
|
maxRecords: '10'
|
24
|
-
|
35
|
+
-
|
36
|
+
query: Camden, William
|
37
|
+
subauth: person
|
38
|
+
position: 5
|
39
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n50031528"
|
40
|
+
replacements:
|
41
|
+
maxRecords: '10'
|
42
|
+
-
|
43
|
+
query: King Stephen 1947
|
44
|
+
subauth: person
|
45
|
+
position: 5
|
46
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79063767"
|
47
|
+
replacements:
|
48
|
+
maxRecords: '10'
|
49
|
+
-
|
50
|
+
query: Tweedy, Jeff
|
51
|
+
subauth: person
|
52
|
+
position: 5
|
53
|
+
subject_uri: "http://id.loc.gov/rwo/agents/no98126226"
|
54
|
+
replacements:
|
55
|
+
maxRecords: '10'
|
56
|
+
-
|
57
|
+
query: Tanaka, Shōzō
|
58
|
+
subauth: person
|
59
|
+
position: 5
|
60
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n81047749"
|
61
|
+
replacements:
|
62
|
+
maxRecords: '10'
|
63
|
+
-
|
64
|
+
query: Tanaka, Shozo
|
65
|
+
subauth: person
|
66
|
+
position: 5
|
67
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n81047749"
|
68
|
+
replacements:
|
69
|
+
maxRecords: '10'
|
70
|
+
-
|
71
|
+
query: 田中正造
|
72
|
+
subauth: person
|
73
|
+
position: 5
|
74
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n81047749"
|
75
|
+
replacements:
|
76
|
+
maxRecords: '10'
|
77
|
+
-
|
78
|
+
# The ʼ diacritic in ʼEndālagétā Kabada can't simply be removed; it would change the letter in the search.
|
79
|
+
pending: true
|
80
|
+
query: Endalageta Kabada
|
81
|
+
subauth: person
|
82
|
+
position: 5
|
83
|
+
subject_uri: "http://id.loc.gov/rwo/agents/no2003094541"
|
84
|
+
replacements:
|
85
|
+
maxRecords: '20'
|
86
|
+
-
|
87
|
+
query: ʼEndālagétā Kabada
|
88
|
+
subauth: person
|
89
|
+
position: 5
|
90
|
+
subject_uri: "http://id.loc.gov/rwo/agents/no2003094541"
|
91
|
+
replacements:
|
92
|
+
maxRecords: '10'
|
25
93
|
term:
|
26
94
|
-
|
27
95
|
identifier: 'http://id.loc.gov/rwo/agents/n79021164'
|
@@ -3,8 +3,38 @@ authority:
|
|
3
3
|
service: ld4l_cache
|
4
4
|
context: true
|
5
5
|
search:
|
6
|
+
#------------------
|
7
|
+
# Connection tests
|
8
|
+
#------------------
|
6
9
|
-
|
7
10
|
query: science
|
11
|
+
#------------------
|
12
|
+
# Accuracy tests
|
13
|
+
#------------------
|
14
|
+
-
|
15
|
+
query: Guitar music (Heavy metal) # example of LCSH with parentheses
|
16
|
+
position: 10
|
17
|
+
subject_uri: "http://id.loc.gov/authorities/subjects/sh85059850"
|
18
|
+
replacements:
|
19
|
+
maxRecords: '20'
|
20
|
+
-
|
21
|
+
query: Guitar music Heavy metal # example of LCSH with parentheses
|
22
|
+
position: 5
|
23
|
+
subject_uri: "http://id.loc.gov/authorities/subjects/sh85059850"
|
24
|
+
replacements:
|
25
|
+
maxRecords: '10'
|
26
|
+
-
|
27
|
+
query: Cooking with bacon
|
28
|
+
position: 7
|
29
|
+
subject_uri: "http://id.loc.gov/authorities/subjects/sh85031944"
|
30
|
+
replacements:
|
31
|
+
maxRecords: '20'
|
32
|
+
-
|
33
|
+
query: History
|
34
|
+
position: 5
|
35
|
+
subject_uri: "http://id.loc.gov/authorities/subjects/sh85061212"
|
36
|
+
replacements:
|
37
|
+
maxRecords: '10'
|
8
38
|
term:
|
9
39
|
-
|
10
40
|
identifier: 'http://id.loc.gov/authorities/subjects/sh2003008312'
|
@@ -0,0 +1,430 @@
|
|
1
|
+
# Supported subauthorities:
|
2
|
+
# carriers
|
3
|
+
# content_types
|
4
|
+
---
|
5
|
+
authority:
|
6
|
+
service: ld4l_cache
|
7
|
+
context: false
|
8
|
+
search:
|
9
|
+
#------------------
|
10
|
+
# Connection tests
|
11
|
+
#------------------
|
12
|
+
-
|
13
|
+
query: audio
|
14
|
+
subauth: carriers
|
15
|
+
-
|
16
|
+
query: image
|
17
|
+
subauth: content_types
|
18
|
+
-
|
19
|
+
query: rare books
|
20
|
+
subauth: description_conventions
|
21
|
+
-
|
22
|
+
query: daily
|
23
|
+
subauth: frequencies
|
24
|
+
result_size: 120
|
25
|
+
-
|
26
|
+
query: serial
|
27
|
+
subauth: issuance
|
28
|
+
result_size: 110
|
29
|
+
-
|
30
|
+
query: ISSN
|
31
|
+
subauth: marcauthen
|
32
|
+
-
|
33
|
+
query: full
|
34
|
+
subauth: maspect
|
35
|
+
result_size: 110
|
36
|
+
-
|
37
|
+
query: general
|
38
|
+
subauth: maudience
|
39
|
+
result_size: 110
|
40
|
+
-
|
41
|
+
query: pal
|
42
|
+
subauth: mbroadstd
|
43
|
+
result_size: 110
|
44
|
+
-
|
45
|
+
query: electrical
|
46
|
+
subauth: mcapturestorage
|
47
|
+
-
|
48
|
+
query: gray
|
49
|
+
subauth: mcolor
|
50
|
+
result_size: 110
|
51
|
+
-
|
52
|
+
query: video
|
53
|
+
subauth: media_types
|
54
|
+
result_size: 110
|
55
|
+
-
|
56
|
+
query: dvd
|
57
|
+
subauth: mencformat
|
58
|
+
-
|
59
|
+
query: core
|
60
|
+
subauth: menclvl
|
61
|
+
result_size: 100
|
62
|
+
-
|
63
|
+
query: data
|
64
|
+
subauth: mfiletype
|
65
|
+
result_size: 110
|
66
|
+
-
|
67
|
+
query: print
|
68
|
+
subauth: mfont
|
69
|
+
-
|
70
|
+
query: original
|
71
|
+
subauth: mgeneration
|
72
|
+
-
|
73
|
+
query: state
|
74
|
+
subauth: mgovtpubtype
|
75
|
+
result_size: 110
|
76
|
+
-
|
77
|
+
query: fine
|
78
|
+
subauth: mgroove
|
79
|
+
result_size: 110
|
80
|
+
-
|
81
|
+
query: music
|
82
|
+
subauth: millus
|
83
|
+
result_size: 110
|
84
|
+
-
|
85
|
+
query: paragraph
|
86
|
+
subauth: mlayout
|
87
|
+
result_size: 110
|
88
|
+
-
|
89
|
+
query: vinyl
|
90
|
+
subauth: mmaterial
|
91
|
+
result_size: 110
|
92
|
+
-
|
93
|
+
query: score
|
94
|
+
subauth: mmusicformat
|
95
|
+
-
|
96
|
+
query: tablature
|
97
|
+
subauth: mmusnotation
|
98
|
+
result_size: 100
|
99
|
+
-
|
100
|
+
query: mixed
|
101
|
+
subauth: mplayback
|
102
|
+
result_size: 100
|
103
|
+
-
|
104
|
+
query: 160
|
105
|
+
subauth: mplayspeed
|
106
|
+
result_size: 100
|
107
|
+
-
|
108
|
+
query: negative
|
109
|
+
subauth: mpolarity
|
110
|
+
result_size: 100
|
111
|
+
-
|
112
|
+
query: multiscreen
|
113
|
+
subauth: mpresformat
|
114
|
+
result_size: 100
|
115
|
+
-
|
116
|
+
query: etching
|
117
|
+
subauth: mproduction
|
118
|
+
result_size: 100
|
119
|
+
-
|
120
|
+
query: miller
|
121
|
+
subauth: mprojection
|
122
|
+
-
|
123
|
+
query: isbd
|
124
|
+
subauth: mpunctuation_conventions
|
125
|
+
result_size: 100
|
126
|
+
-
|
127
|
+
query: optical
|
128
|
+
subauth: mrecmedium
|
129
|
+
result_size: 100
|
130
|
+
-
|
131
|
+
query: analog
|
132
|
+
subauth: mrectype
|
133
|
+
result_size: 100
|
134
|
+
-
|
135
|
+
query: high
|
136
|
+
subauth: mreductionratio
|
137
|
+
-
|
138
|
+
query: region 8
|
139
|
+
subauth: mregencoding
|
140
|
+
result_size: 100
|
141
|
+
-
|
142
|
+
query: land
|
143
|
+
subauth: mrelief
|
144
|
+
result_size: 100
|
145
|
+
-
|
146
|
+
query: scale
|
147
|
+
subauth: mscale
|
148
|
+
result_size: 100
|
149
|
+
-
|
150
|
+
query: chinese
|
151
|
+
subauth: mscript
|
152
|
+
result_size: 100
|
153
|
+
-
|
154
|
+
query: silent
|
155
|
+
subauth: msoundcontent
|
156
|
+
result_size: 100
|
157
|
+
-
|
158
|
+
query: audio
|
159
|
+
subauth: mspecplayback
|
160
|
+
-
|
161
|
+
query: invalid
|
162
|
+
subauth: mstatus
|
163
|
+
result_size: 100
|
164
|
+
-
|
165
|
+
query: index
|
166
|
+
subauth: msupplcont
|
167
|
+
-
|
168
|
+
query: braille
|
169
|
+
subauth: mtactile
|
170
|
+
-
|
171
|
+
query: half
|
172
|
+
subauth: mtapeconfig
|
173
|
+
result_size: 100
|
174
|
+
-
|
175
|
+
query: action
|
176
|
+
subauth: mtechnique
|
177
|
+
-
|
178
|
+
query: laser
|
179
|
+
subauth: mvidformat
|
180
|
+
result_size: 100
|
181
|
+
-
|
182
|
+
query: actor
|
183
|
+
subauth: relators
|
184
|
+
-
|
185
|
+
query: sound
|
186
|
+
subauth: resource_components
|
187
|
+
result_size: 100
|
188
|
+
#------------------
|
189
|
+
# Accuracy tests
|
190
|
+
#------------------
|
191
|
+
-
|
192
|
+
query: audio
|
193
|
+
subauth: carriers
|
194
|
+
position: 4
|
195
|
+
subject_uri: "http://id.loc.gov/vocabulary/carriers/sq"
|
196
|
+
-
|
197
|
+
query: image
|
198
|
+
subauth: content_types
|
199
|
+
position: 4
|
200
|
+
subject_uri: "http://id.loc.gov/vocabulary/contentTypes/sti"
|
201
|
+
-
|
202
|
+
query: rare books
|
203
|
+
subauth: description_conventions
|
204
|
+
position: 4
|
205
|
+
subject_uri: "http://id.loc.gov/vocabulary/descriptionConventions/bdrb"
|
206
|
+
-
|
207
|
+
query: daily
|
208
|
+
subauth: frequencies
|
209
|
+
position: 4
|
210
|
+
subject_uri: "http://id.loc.gov/vocabulary/frequencies/dyl"
|
211
|
+
-
|
212
|
+
query: serial
|
213
|
+
subauth: issuance
|
214
|
+
position: 4
|
215
|
+
subject_uri: "http://id.loc.gov/vocabulary/issuance/serl"
|
216
|
+
-
|
217
|
+
query: ISSN
|
218
|
+
subauth: marcauthen
|
219
|
+
position: 4
|
220
|
+
subject_uri: "http://id.loc.gov/vocabulary/marcauthen/isdsc"
|
221
|
+
-
|
222
|
+
query: full
|
223
|
+
subauth: maspect
|
224
|
+
position: 4
|
225
|
+
subject_uri: "http://id.loc.gov/vocabulary/maspect/full"
|
226
|
+
-
|
227
|
+
query: general
|
228
|
+
subauth: maudience
|
229
|
+
position: 4
|
230
|
+
subject_uri: "http://id.loc.gov/vocabulary/maudience/gen"
|
231
|
+
-
|
232
|
+
query: pal
|
233
|
+
subauth: mbroadstd
|
234
|
+
position: 4
|
235
|
+
subject_uri: "http://id.loc.gov/vocabulary/mbroadstd/pal"
|
236
|
+
-
|
237
|
+
query: electrical
|
238
|
+
subauth: mcapturestorage
|
239
|
+
position: 4
|
240
|
+
subject_uri: "http://id.loc.gov/vocabulary/mcapturestorage/dist"
|
241
|
+
-
|
242
|
+
query: gray
|
243
|
+
subauth: mcolor
|
244
|
+
position: 4
|
245
|
+
subject_uri: "http://id.loc.gov/vocabulary/mcolor/gry"
|
246
|
+
-
|
247
|
+
query: video
|
248
|
+
subauth: media_types
|
249
|
+
position: 4
|
250
|
+
subject_uri: "http://id.loc.gov/vocabulary/mediaTypes/v"
|
251
|
+
-
|
252
|
+
query: dvd
|
253
|
+
subauth: mencformat
|
254
|
+
position: 4
|
255
|
+
subject_uri: "http://id.loc.gov/vocabulary/mencformat/dvdv"
|
256
|
+
-
|
257
|
+
query: core
|
258
|
+
subauth: menclvl
|
259
|
+
position: 4
|
260
|
+
subject_uri: "http://id.loc.gov/vocabulary/menclvl/4"
|
261
|
+
-
|
262
|
+
query: data
|
263
|
+
subauth: mfiletype
|
264
|
+
position: 4
|
265
|
+
subject_uri: "http://id.loc.gov/vocabulary/mfiletype/data"
|
266
|
+
-
|
267
|
+
query: print
|
268
|
+
subauth: mfont
|
269
|
+
position: 4
|
270
|
+
subject_uri: "http://id.loc.gov/vocabulary/mfont/lp"
|
271
|
+
-
|
272
|
+
query: original
|
273
|
+
subauth: mgeneration
|
274
|
+
position: 4
|
275
|
+
subject_uri: "http://id.loc.gov/vocabulary/mgeneration/originalneg"
|
276
|
+
-
|
277
|
+
query: state
|
278
|
+
subauth: mgovtpubtype
|
279
|
+
position: 4
|
280
|
+
subject_uri: "http://id.loc.gov/vocabulary/mgovtpubtype/s"
|
281
|
+
-
|
282
|
+
query: fine
|
283
|
+
subauth: mgroove
|
284
|
+
position: 4
|
285
|
+
subject_uri: "http://id.loc.gov/vocabulary/mgroove/finepitch"
|
286
|
+
-
|
287
|
+
query: music
|
288
|
+
subauth: millus
|
289
|
+
position: 4
|
290
|
+
subject_uri: "http://id.loc.gov/vocabulary/millus/mus"
|
291
|
+
-
|
292
|
+
query: paragraph
|
293
|
+
subauth: mlayout
|
294
|
+
position: 4
|
295
|
+
subject_uri: "http://id.loc.gov/vocabulary/mlayout/para"
|
296
|
+
-
|
297
|
+
query: vinyl
|
298
|
+
subauth: mmaterial
|
299
|
+
position: 4
|
300
|
+
subject_uri: "http://id.loc.gov/vocabulary/mmaterial/vny"
|
301
|
+
-
|
302
|
+
query: score
|
303
|
+
subauth: mmusicformat
|
304
|
+
position: 4
|
305
|
+
subject_uri: "http://id.loc.gov/vocabulary/mmusicformat/pianoscore"
|
306
|
+
-
|
307
|
+
query: tablature
|
308
|
+
subauth: mmusnotation
|
309
|
+
position: 4
|
310
|
+
subject_uri: "http://id.loc.gov/vocabulary/mmusnotation/tabla"
|
311
|
+
-
|
312
|
+
query: mixed
|
313
|
+
subauth: mplayback
|
314
|
+
position: 4
|
315
|
+
subject_uri: "http://id.loc.gov/vocabulary/mplayback/mix"
|
316
|
+
-
|
317
|
+
query: 160
|
318
|
+
subauth: mplayspeed
|
319
|
+
position: 4
|
320
|
+
subject_uri: "http://id.loc.gov/vocabulary/mplayspeed/i"
|
321
|
+
-
|
322
|
+
query: negative
|
323
|
+
subauth: mpolarity
|
324
|
+
position: 4
|
325
|
+
subject_uri: "http://id.loc.gov/vocabulary/mpolarity/neg"
|
326
|
+
-
|
327
|
+
query: multiscreen
|
328
|
+
subauth: mpresformat
|
329
|
+
position: 4
|
330
|
+
subject_uri: "http://id.loc.gov/vocabulary/mpresformat/mscreen"
|
331
|
+
-
|
332
|
+
query: etching
|
333
|
+
subauth: mproduction
|
334
|
+
position: 4
|
335
|
+
subject_uri: "http://id.loc.gov/vocabulary/mproduction/etch"
|
336
|
+
-
|
337
|
+
query: miller
|
338
|
+
subauth: mprojection
|
339
|
+
position: 4
|
340
|
+
subject_uri: "http://id.loc.gov/vocabulary/mprojection/de"
|
341
|
+
-
|
342
|
+
query: isbd
|
343
|
+
subauth: mpunctuation_conventions
|
344
|
+
position: 4
|
345
|
+
subject_uri: "http://id.loc.gov/vocabulary/mpunctuationConventions/isbd"
|
346
|
+
-
|
347
|
+
query: optical
|
348
|
+
subauth: mrecmedium
|
349
|
+
position: 4
|
350
|
+
subject_uri: "http://id.loc.gov/vocabulary/mrecmedium/opt"
|
351
|
+
-
|
352
|
+
query: analog
|
353
|
+
subauth: mrectype
|
354
|
+
position: 4
|
355
|
+
subject_uri: "http://id.loc.gov/vocabulary/mrectype/analog"
|
356
|
+
-
|
357
|
+
query: high
|
358
|
+
subauth: mreductionratio
|
359
|
+
position: 4
|
360
|
+
subject_uri: "http://id.loc.gov/vocabulary/mreductionratio/veryhigh"
|
361
|
+
-
|
362
|
+
query: region 8
|
363
|
+
subauth: mregencoding
|
364
|
+
position: 4
|
365
|
+
subject_uri: "http://id.loc.gov/vocabulary/mregencoding/region8"
|
366
|
+
-
|
367
|
+
query: land
|
368
|
+
subauth: mrelief
|
369
|
+
position: 4
|
370
|
+
subject_uri: "http://id.loc.gov/vocabulary/mrelief/land"
|
371
|
+
-
|
372
|
+
query: scale
|
373
|
+
subauth: mscale
|
374
|
+
position: 4
|
375
|
+
subject_uri: "http://id.loc.gov/vocabulary/mscale/notdrawn"
|
376
|
+
-
|
377
|
+
query: chinese
|
378
|
+
subauth: mscript
|
379
|
+
position: 4
|
380
|
+
subject_uri: "http://id.loc.gov/vocabulary/mscript/e"
|
381
|
+
-
|
382
|
+
query: silent
|
383
|
+
subauth: msoundcontent
|
384
|
+
position: 4
|
385
|
+
subject_uri: "http://id.loc.gov/vocabulary/msoundcontent/silent"
|
386
|
+
-
|
387
|
+
query: audio
|
388
|
+
subauth: mspecplayback
|
389
|
+
position: 4
|
390
|
+
subject_uri: "http://id.loc.gov/vocabulary/mspecplayback/dtshd51"
|
391
|
+
-
|
392
|
+
query: invalid
|
393
|
+
subauth: mstatus
|
394
|
+
position: 4
|
395
|
+
subject_uri: "http://id.loc.gov/vocabulary/mstatus/cancinv"
|
396
|
+
-
|
397
|
+
query: index
|
398
|
+
subauth: msupplcont
|
399
|
+
position: 4
|
400
|
+
subject_uri: "http://id.loc.gov/vocabulary/msupplcont/thematicindex"
|
401
|
+
-
|
402
|
+
query: braille
|
403
|
+
subauth: mtactile
|
404
|
+
position: 4
|
405
|
+
subject_uri: "http://id.loc.gov/vocabulary/mtactile/math"
|
406
|
+
-
|
407
|
+
query: half
|
408
|
+
subauth: mtapeconfig
|
409
|
+
position: 4
|
410
|
+
subject_uri: "http://id.loc.gov/vocabulary/mtapeconfig/half"
|
411
|
+
-
|
412
|
+
query: action
|
413
|
+
subauth: mtechnique
|
414
|
+
position: 4
|
415
|
+
subject_uri: "http://id.loc.gov/vocabulary/mtechnique/animlive"
|
416
|
+
-
|
417
|
+
query: laser
|
418
|
+
subauth: mvidformat
|
419
|
+
position: 4
|
420
|
+
subject_uri: "http://id.loc.gov/vocabulary/mvidformat/laser"
|
421
|
+
-
|
422
|
+
query: actor
|
423
|
+
subauth: relators
|
424
|
+
position: 4
|
425
|
+
subject_uri: "http://id.loc.gov/vocabulary/relators/vac"
|
426
|
+
-
|
427
|
+
query: sound
|
428
|
+
subauth: resource_components
|
429
|
+
position: 4
|
430
|
+
subject_uri: "http://id.loc.gov/vocabulary/resourceComponents/str"
|