@@ -40,6 +40,11 @@ def test_list_records_scope
40
40
assert_equal expected_count , doc . elements [ 'OAI-PMH/ListRecords' ] . to_a . size
41
41
end
42
42
43
+ def test_invalid_set_raises_no_match
44
+ assert_raises ( OAI ::NoMatchException ) do
45
+ @provider . list_records ( :metadata_prefix => 'oai_dc' , :set => "invalid_does_not_exist" )
46
+ end
47
+ end
43
48
44
49
def test_get_record_alternate_identifier_column
45
50
@provider = ARProviderCustomIdentifierField . new
@@ -127,7 +132,7 @@ def test_from_and_until
127
132
)
128
133
assert_equal 40 , doc . elements [ 'OAI-PMH/ListRecords' ] . to_a . size
129
134
end
130
-
135
+
131
136
def test_bad_until_raises_exception
132
137
DCField . order ( id : :asc ) . limit ( 10 ) . update_all ( updated_at : 1 . year . ago )
133
138
DCField . order ( id : :desc ) . limit ( 10 ) . update_all ( updated_at : 1 . year . from_now )
@@ -140,11 +145,11 @@ def test_bad_until_raises_exception
140
145
end
141
146
end
142
147
end
143
-
148
+
144
149
def test_bad_from_raises_exception
145
150
DCField . order ( id : :asc ) . limit ( 10 ) . update_all ( updated_at : 1 . year . ago )
146
151
DCField . order ( id : :desc ) . limit ( 10 ) . update_all ( updated_at : 1 . year . from_now )
147
-
152
+
148
153
badTimes = [
149
154
'junk' ,
150
155
'February 92nd, 2015' ]
@@ -169,7 +174,7 @@ def test_handles_empty_collections
169
174
REXML ::Document . new ( @provider . list_records ( :metadata_prefix => 'oai_dc' ) )
170
175
end
171
176
end
172
-
177
+
173
178
def test_bad_id_raises_exception
174
179
badIdentifiers = [
175
180
'invalid"id' ,
@@ -183,7 +188,7 @@ def test_bad_id_raises_exception
183
188
end
184
189
end
185
190
end
186
-
191
+
187
192
188
193
def setup
189
194
@provider = ARProvider . new
0 commit comments