qa_server 7.4.0 → 7.7.1
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 +7 -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 +56 -56
- 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/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 +55 -4
- 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 +38 -38
- data/app/services/qa_server/performance_per_byte_data_service.rb +7 -7
- 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/presenters/qa_server/monitor_status/history_presenter_spec.rb +81 -0
- data/spec/spec_helper.rb +4 -0
- metadata +65 -17
@@ -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: memphis
|
11
|
+
#------------------
|
12
|
+
# Accuracy tests
|
13
|
+
#------------------
|
14
|
+
-
|
15
|
+
query: Gouverneur
|
16
|
+
position: 3
|
17
|
+
subject_uri: "http://vocab.getty.edu/tgn/2069433-place"
|
18
|
+
replacements:
|
19
|
+
maxRecords: '10'
|
20
|
+
-
|
21
|
+
query: Boulder, CO
|
22
|
+
position: 3
|
23
|
+
subject_uri: "http://vocab.getty.edu/tgn/2000198-place"
|
24
|
+
replacements:
|
25
|
+
maxRecords: '10'
|
26
|
+
-
|
27
|
+
query: Paris, France
|
28
|
+
position: 10
|
29
|
+
subject_uri: "http://vocab.getty.edu/tgn/7008038-place"
|
30
|
+
replacements:
|
31
|
+
maxRecords: '20'
|
32
|
+
-
|
33
|
+
query: Nile River
|
34
|
+
position: 3
|
35
|
+
subject_uri: "http://vocab.getty.edu/tgn/1127805-place"
|
36
|
+
replacements:
|
37
|
+
maxRecords: '10'
|
8
38
|
term:
|
9
39
|
-
|
10
|
-
identifier: 'http://vocab.getty.edu/tgn/7017750'
|
40
|
+
identifier: 'http://vocab.getty.edu/tgn/7017750-place'
|
@@ -1,7 +1,13 @@
|
|
1
|
+
# Supported subauthorities:
|
2
|
+
# person
|
3
|
+
# organization
|
1
4
|
---
|
2
5
|
authority:
|
3
6
|
service: ld4l_cache
|
4
7
|
search:
|
8
|
+
#------------------
|
9
|
+
# Connection tests
|
10
|
+
#------------------
|
5
11
|
-
|
6
12
|
query: washington
|
7
13
|
-
|
@@ -10,6 +16,37 @@ search:
|
|
10
16
|
-
|
11
17
|
query: washington
|
12
18
|
subauth: organization
|
19
|
+
#------------------
|
20
|
+
# Accuracy tests
|
21
|
+
#------------------
|
22
|
+
-
|
23
|
+
query: Gonzalez-Torres, Felix
|
24
|
+
subject_uri: "http://vocab.getty.edu/ulan/500114715-agent"
|
25
|
+
position: 5
|
26
|
+
replacements:
|
27
|
+
maxRecords: '10'
|
28
|
+
-
|
29
|
+
query: Gouverneur
|
30
|
+
subauth: person
|
31
|
+
subject_uri: "http://vocab.getty.edu/ulan/500225342-agent"
|
32
|
+
position: 5
|
33
|
+
replacements:
|
34
|
+
maxRecords: '10'
|
35
|
+
-
|
36
|
+
query: Octavio Medellin
|
37
|
+
subauth: person
|
38
|
+
subject_uri: "http://vocab.getty.edu/ulan/500333005-agent"
|
39
|
+
position: 3
|
40
|
+
replacements:
|
41
|
+
maxRecords: '8'
|
42
|
+
-
|
43
|
+
query: University of Chicago Library
|
44
|
+
subauth: organization
|
45
|
+
result_size: 100
|
46
|
+
subject_uri: "http://vocab.getty.edu/ulan/500304715-agent"
|
47
|
+
position: 5
|
48
|
+
replacements:
|
49
|
+
maxRecords: '10'
|
13
50
|
term:
|
14
51
|
-
|
15
|
-
identifier: 'http://vocab.getty.edu/ulan/500020427'
|
52
|
+
identifier: 'http://vocab.getty.edu/ulan/500020427-agent'
|
@@ -0,0 +1,36 @@
|
|
1
|
+
---
|
2
|
+
authority:
|
3
|
+
service: ld4l_cache
|
4
|
+
context: true
|
5
|
+
search:
|
6
|
+
#------------------
|
7
|
+
# Connection tests
|
8
|
+
#------------------
|
9
|
+
-
|
10
|
+
query: binding
|
11
|
+
result_size: 100
|
12
|
+
#------------------
|
13
|
+
# Accuracy tests
|
14
|
+
#------------------
|
15
|
+
-
|
16
|
+
query: case binding
|
17
|
+
subject_uri: "http://w3id.org/lob/concept/4165"
|
18
|
+
position: 5
|
19
|
+
replacements:
|
20
|
+
maxRecords: '10'
|
21
|
+
-
|
22
|
+
query: innhengt bind
|
23
|
+
subject_uri: "http://w3id.org/lob/concept/4165"
|
24
|
+
position: 5
|
25
|
+
replacements:
|
26
|
+
maxRecords: '10'
|
27
|
+
-
|
28
|
+
query: turned-in covers
|
29
|
+
subject_uri: "http://w3id.org/lob/concept/2494"
|
30
|
+
position: 3
|
31
|
+
replacements:
|
32
|
+
maxRecords: '8'
|
33
|
+
|
34
|
+
term:
|
35
|
+
-
|
36
|
+
identifier: 'http://w3id.org/lob/concept/3796'
|
@@ -3,50 +3,75 @@ authority:
|
|
3
3
|
service: ld4l_cache
|
4
4
|
context: true
|
5
5
|
search:
|
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
|
-
|
6
|
+
#------------------
|
7
|
+
# Connection tests
|
8
|
+
#------------------
|
9
|
+
-
|
10
|
+
query: workers
|
11
|
+
#------------------
|
12
|
+
# Accuracy tests
|
13
|
+
#------------------
|
14
|
+
# No subauths (yet, perhaps at some point we'll have to deal with madsrdf:DeprecatedAuthority)
|
15
|
+
-
|
16
|
+
query: Biologists
|
17
|
+
position: 1
|
18
|
+
subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060613"
|
19
|
+
replacements:
|
20
|
+
maxRecords: '5'
|
21
|
+
-
|
22
|
+
query: Biologist
|
23
|
+
position: 3
|
24
|
+
subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060613"
|
25
|
+
replacements:
|
26
|
+
maxRecords: '5'
|
27
|
+
-
|
28
|
+
query: social worker
|
29
|
+
position: 1
|
30
|
+
subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060087"
|
31
|
+
replacements:
|
32
|
+
maxRecords: '10'
|
33
|
+
-
|
34
|
+
query: Social Worker
|
35
|
+
position: 1
|
36
|
+
subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060087"
|
37
|
+
replacements:
|
38
|
+
maxRecords: '10'
|
39
|
+
-
|
40
|
+
query: Kiwis
|
41
|
+
position: 1
|
42
|
+
subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060357"
|
43
|
+
replacements:
|
44
|
+
maxRecords: '5'
|
45
|
+
-
|
46
|
+
query: New Zealanders
|
47
|
+
position: 8
|
48
|
+
subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2016060205"
|
49
|
+
replacements:
|
50
|
+
maxRecords: '15'
|
51
|
+
-
|
52
|
+
query: New Zealanders
|
53
|
+
position: 8
|
54
|
+
subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060330"
|
55
|
+
replacements:
|
56
|
+
maxRecords: '15'
|
57
|
+
-
|
58
|
+
query: African Americans
|
59
|
+
position: 5
|
60
|
+
subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060859"
|
61
|
+
replacements:
|
62
|
+
maxRecords: '10'
|
63
|
+
-
|
64
|
+
query: dancers
|
65
|
+
position: 3
|
66
|
+
subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060747"
|
67
|
+
replacements:
|
68
|
+
maxRecords: '10'
|
69
|
+
-
|
70
|
+
query: Micmac
|
71
|
+
position: 1
|
72
|
+
subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2016060011"
|
73
|
+
replacements:
|
74
|
+
maxRecords: '5'
|
50
75
|
term:
|
51
76
|
-
|
52
77
|
identifier: 'http://id.loc.gov/authorities/demographicTerms/dg2015060460'
|
@@ -1,8 +1,14 @@
|
|
1
|
+
# Supported subauthorities:
|
2
|
+
# active
|
3
|
+
# deprecated
|
1
4
|
---
|
2
5
|
authority:
|
3
6
|
service: ld4l_cache
|
4
7
|
context: true
|
5
8
|
search:
|
9
|
+
#------------------
|
10
|
+
# Connection tests
|
11
|
+
#------------------
|
6
12
|
-
|
7
13
|
query: animation
|
8
14
|
-
|
@@ -13,18 +19,34 @@ search:
|
|
13
19
|
-
|
14
20
|
query: Basketball television programs
|
15
21
|
subauth: deprecated
|
22
|
+
#------------------
|
23
|
+
# Accuracy tests
|
24
|
+
#------------------
|
25
|
+
# active
|
16
26
|
-
|
17
27
|
query: Preliminary documents (Treaties)
|
18
28
|
position: 10
|
19
29
|
subject_uri: "http://id.loc.gov/authorities/genreForms/gf2011026703"
|
20
30
|
replacements:
|
21
31
|
maxRecords: '20'
|
32
|
+
-
|
33
|
+
query: maps
|
34
|
+
position: 3
|
35
|
+
subject_uri: "http://id.loc.gov/authorities/genreForms/gf2011026387"
|
36
|
+
replacements:
|
37
|
+
maxRecords: '10'
|
22
38
|
-
|
23
39
|
query: Loose-leafs
|
24
40
|
position: 10
|
25
41
|
subject_uri: "http://id.loc.gov/authorities/genreForms/gf2011026373"
|
26
42
|
replacements:
|
27
43
|
maxRecords: '20'
|
44
|
+
-
|
45
|
+
query: Casebooks (Law)
|
46
|
+
position: 3
|
47
|
+
subject_uri: "http://id.loc.gov/authorities/genreForms/gf2011026115"
|
48
|
+
replacements:
|
49
|
+
maxRecords: '10'
|
28
50
|
-
|
29
51
|
query: Casebooks
|
30
52
|
position: 10
|
@@ -1,8 +1,14 @@
|
|
1
|
+
# Supported subauthorities:
|
2
|
+
# geographic
|
3
|
+
# conference
|
1
4
|
---
|
2
5
|
authority:
|
3
6
|
service: ld4l_cache
|
4
7
|
context: true
|
5
8
|
search:
|
9
|
+
#------------------
|
10
|
+
# Connection tests
|
11
|
+
#------------------
|
6
12
|
-
|
7
13
|
query: Cayuga
|
8
14
|
-
|
@@ -11,6 +17,65 @@ search:
|
|
11
17
|
-
|
12
18
|
query: ALA
|
13
19
|
subauth: conference
|
20
|
+
#------------------
|
21
|
+
# Accuracy tests
|
22
|
+
#------------------
|
23
|
+
-
|
24
|
+
query: Boston Mass
|
25
|
+
position: 3
|
26
|
+
subject_uri: "http://id.loc.gov/authorities/names/n79045553"
|
27
|
+
replacements:
|
28
|
+
maxRecords: '10'
|
29
|
+
-
|
30
|
+
query: Boston Mass
|
31
|
+
position: 5
|
32
|
+
subauth: geographic
|
33
|
+
subject_uri: "http://id.loc.gov/authorities/names/n79045553"
|
34
|
+
replacements:
|
35
|
+
maxRecords: '10'
|
36
|
+
-
|
37
|
+
pending: true
|
38
|
+
query: Camden NJ
|
39
|
+
position: 8
|
40
|
+
subauth: geographic
|
41
|
+
subject_uri: "http://id.loc.gov/authorities/names/n80010449"
|
42
|
+
replacements:
|
43
|
+
maxRecords: '20'
|
44
|
+
-
|
45
|
+
query: Madrid, Spain
|
46
|
+
position: 5
|
47
|
+
subauth: geographic
|
48
|
+
subject_uri: "http://id.loc.gov/authorities/names/n78089046"
|
49
|
+
replacements:
|
50
|
+
maxRecords: '15'
|
51
|
+
-
|
52
|
+
query: Chicago, Ill
|
53
|
+
position: 5
|
54
|
+
subauth: geographic
|
55
|
+
subject_uri: "http://id.loc.gov/authorities/names/n78086438"
|
56
|
+
replacements:
|
57
|
+
maxRecords: '15'
|
58
|
+
-
|
59
|
+
query: seattle
|
60
|
+
position: 5
|
61
|
+
subauth: geographic
|
62
|
+
subject_uri: "http://id.loc.gov/authorities/names/n79041965"
|
63
|
+
replacements:
|
64
|
+
maxRecords: '15'
|
65
|
+
-
|
66
|
+
query: seattle (wash.)
|
67
|
+
position: 5
|
68
|
+
subauth: geographic
|
69
|
+
subject_uri: "http://id.loc.gov/authorities/names/n79041965"
|
70
|
+
replacements:
|
71
|
+
maxRecords: '15'
|
72
|
+
-
|
73
|
+
query: Non Food Uses of Crops
|
74
|
+
position: 5
|
75
|
+
subauth: conference
|
76
|
+
subject_uri: "http://id.loc.gov/authorities/names/nb2014001245"
|
77
|
+
replacements:
|
78
|
+
maxRecords: '15'
|
14
79
|
term:
|
15
80
|
-
|
16
81
|
identifier: 'http://id.loc.gov/authorities/names/n92016188'
|
@@ -0,0 +1,78 @@
|
|
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 2 (10-18)
|
12
|
+
#------------------
|
13
|
+
-
|
14
|
+
query: Tolstoy, Leo
|
15
|
+
subauth: person
|
16
|
+
position: 5
|
17
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
|
18
|
+
replacements:
|
19
|
+
maxRecords: '20'
|
20
|
+
-
|
21
|
+
query: tolstoi, lev
|
22
|
+
subauth: person
|
23
|
+
position: 5
|
24
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
|
25
|
+
replacements:
|
26
|
+
maxRecords: '20'
|
27
|
+
-
|
28
|
+
query: Tolstoĭ, Lev
|
29
|
+
subauth: person
|
30
|
+
position: 5
|
31
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
|
32
|
+
replacements:
|
33
|
+
maxRecords: '20'
|
34
|
+
-
|
35
|
+
query: Толстой, Лев
|
36
|
+
subauth: person
|
37
|
+
position: 5
|
38
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
|
39
|
+
replacements:
|
40
|
+
maxRecords: '20'
|
41
|
+
-
|
42
|
+
query: Толстой, Лев, граф, 1828-1910
|
43
|
+
subauth: person
|
44
|
+
position: 5
|
45
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
|
46
|
+
replacements:
|
47
|
+
maxRecords: '20'
|
48
|
+
-
|
49
|
+
query: טאלסטאי, ליעװ
|
50
|
+
subauth: person
|
51
|
+
position: 5
|
52
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
|
53
|
+
replacements:
|
54
|
+
maxRecords: '20'
|
55
|
+
-
|
56
|
+
query: レオ.トルストイ
|
57
|
+
subauth: person
|
58
|
+
position: 5
|
59
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
|
60
|
+
replacements:
|
61
|
+
maxRecords: '20'
|
62
|
+
-
|
63
|
+
query: لئون تولستوى
|
64
|
+
subauth: person
|
65
|
+
position: 5
|
66
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
|
67
|
+
replacements:
|
68
|
+
maxRecords: '20'
|
69
|
+
-
|
70
|
+
query: 托爾斯泰, 列夫
|
71
|
+
subauth: person
|
72
|
+
position: 5
|
73
|
+
subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
|
74
|
+
replacements:
|
75
|
+
maxRecords: '20'
|
76
|
+
term:
|
77
|
+
-
|
78
|
+
identifier: 'http://id.loc.gov/rwo/agents/n79021164'
|