triannon-client 0.4.2 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.env_example +16 -2
- data/.rspec +1 -0
- data/README.md +49 -18
- data/Rakefile +15 -2
- data/lib/triannon-client.rb +12 -6
- data/lib/triannon-client/configuration.rb +26 -14
- data/lib/triannon-client/triannon_client.rb +139 -44
- data/spec/fixtures/vcr_cassettes/{TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/gets_an_open_annotation_by_ID_with_content_type_application/x-turtle_.yml → CRUD/create_annotation.yml} +192 -132
- data/spec/fixtures/vcr_cassettes/TriannonClientAUTH/with_authentication/behaves_like_authenticate/-_authenticate_returns_true.yml +343 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/POST_401_response_retries_and_logs_RestClient_Exception_message.yml +170 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/POST_403_response_does_not_retry_and_logs_RestClient_Exception_message.yml +170 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/POST_500_response_does_not_retry_and_logs_RestClient_Exception_message.yml +170 -0
- data/spec/fixtures/vcr_cassettes/{TriannonClient/_get_annotations/returns_an_annotation_list_with_an_annotation_created_by_a_prior_POST.yml → TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/does_not_raise_an_error_when_submitting_a_valid_open_annotation.yml} +203 -319
- data/spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/logs_RuntimeError_message.yml +170 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/returns_a_RestClient_Response_object.yml +170 -0
- data/spec/fixtures/vcr_cassettes/{TriannonClient/_post_annotation → TriannonClientCREATE/_post_annotation/without_authentication/behaves_like_create_annotations}/does_not_raise_an_error_when_submitting_a_valid_open_annotation.yml +29 -27
- data/spec/fixtures/vcr_cassettes/TriannonClientCREATE/clear_annotations.yml +590 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/with_authentication/behaves_like_delete_annotations/returns_TRUE_when_deleting_an_annotation_that_does_NOT_exist.yml +349 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/with_authentication/behaves_like_delete_annotations/returns_TRUE_when_deleting_an_annotation_that_exists.yml +332 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/with_authentication/behaves_like_delete_annotations/validates_the_annotation_ID.yml +288 -0
- data/spec/fixtures/vcr_cassettes/{TriannonClient/_delete_annotation/returns_TRUE_when_deleting_an_open_annotation_that_does_NOT_exist.yml → TriannonClientDELETE/_delete_annotation/without_authentication/behaves_like_delete_annotations/returns_TRUE_when_deleting_an_annotation_that_does_NOT_exist.yml} +13 -9
- data/spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/without_authentication/behaves_like_delete_annotations/returns_TRUE_when_deleting_an_annotation_that_exists.yml +127 -0
- data/spec/fixtures/vcr_cassettes/{TriannonClient/_delete_annotation → TriannonClientDELETE/_delete_annotation/without_authentication/behaves_like_delete_annotations}/validates_the_annotation_ID.yml +7 -5
- data/spec/fixtures/vcr_cassettes/TriannonClientDELETE/clear_annotations.yml +594 -0
- data/spec/fixtures/vcr_cassettes/{TriannonClient → TriannonClientREAD/GET}/_get_annotations/returns_an_RDF_Graph.yml +30 -23
- data/spec/fixtures/vcr_cassettes/{TriannonClient → TriannonClientREAD/GET}/_get_annotations/returns_an_RDF_Graph_that_contains_an_AnnotationList.yml +30 -23
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_get_annotations/returns_an_annotation_list_with_an_annotation_created_by_a_prior_POST.yml +302 -0
- data/spec/fixtures/vcr_cassettes/{TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_application/n-quads_.yml → TriannonClientREAD/GET/_get_iiif_annotation/returns_an_RDF_Graph_of_an_open_annotation.yml} +25 -78
- data/spec/fixtures/vcr_cassettes/{TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_application/n-triples_.yml → TriannonClientREAD/GET/_get_oa_annotation/returns_an_RDF_Graph_of_an_open_annotation.yml} +25 -78
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_response2graph/accepts_a_RestClient_Response_instance.yml +2399 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/csvm_json_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/n-quads_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/n-triples_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/rdf_json_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/rdf_n3_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/trig_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/trix_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/turtle_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/x-ld_json_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/x-trig_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/csv_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/n3_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/plain_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/rdf_n3_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/rdf_turtle_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/tab-separated-values_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/x-nquads_.yml +1231 -0
- data/spec/fixtures/vcr_cassettes/{TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_application → TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/gets_an_open_annotation_by_ID_with_content_type_application}/ld_json_.yml +25 -78
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/gets_an_open_annotation_by_ID_with_content_type_application/rdf_xml_.yml +68 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/gets_an_open_annotation_by_ID_with_content_type_application/x-turtle_.yml +69 -0
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/gets_an_open_annotation_by_ID_with_content_type_text/turtle_.yml +69 -0
- data/spec/fixtures/vcr_cassettes/{TriannonClient/GET_annotation_by_ID_/_get_annotation/without_content_type → TriannonClientREAD/GET/annotation_by_ID/using_default_content_type}/checks_the_annotation_ID.yml +25 -78
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_default_content_type/returns_an_EMPTY_RDF_graph_with_a_valid_ID_for_NO_annotation_on_the_server.yml +186 -0
- data/spec/fixtures/vcr_cassettes/{TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_application/rdf_json_.yml → TriannonClientREAD/GET/annotation_by_ID/using_default_content_type/returns_an_RDF_graph_with_a_valid_ID_for_an_annotation_on_the_server.yml} +25 -78
- data/spec/fixtures/vcr_cassettes/TriannonClientREAD/clear_annotations.yml +648 -0
- data/spec/fixtures/vcr_cassettes/{TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/gets_an_open_annotation_by_ID_with_content_type_application/rdf_xml_.yml → TriannonClientREAD/create_annotation.yml} +192 -131
- data/spec/lib/triannon-client/configuration_spec.rb +83 -27
- data/spec/lib/triannon-client/triannon_client_auth_spec.rb +61 -0
- data/spec/lib/triannon-client/triannon_client_class_spec.rb +104 -0
- data/spec/lib/triannon-client/triannon_client_create_spec.rb +119 -0
- data/spec/lib/triannon-client/triannon_client_delete_spec.rb +117 -0
- data/spec/lib/triannon-client/triannon_client_read_spec.rb +342 -0
- data/spec/spec_helper.rb +140 -4
- data/triannon-client.gemspec +1 -1
- metadata +112 -153
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/n-quads_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/n-triples_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/rdf_json_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/rdf_n3_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/trig_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/trix_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/turtle_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/x-ld_json_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/x-trig_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/n3_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/rdf_n3_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/rdf_turtle_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/x-nquads_.yml +0 -3995
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/gets_an_open_annotation_by_ID_with_content_type_application/ld_json_.yml +0 -4946
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/gets_an_open_annotation_by_ID_with_content_type_text/turtle_.yml +0 -2566
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_application/rdf_n3_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_application/rdf_xml_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_application/trig_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_application/trix_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_application/turtle_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_application/x-ld_json_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_application/x-trig_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_application/x-turtle_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_text/n3_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_text/rdf_n3_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_text/rdf_turtle_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_text/turtle_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/with_content_type/requests_an_open_annotation_by_ID_with_content_type_text/x-nquads_.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/without_content_type/logs_exceptions.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/without_content_type/raises_an_argument_error_with_a_nil_ID.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/without_content_type/raises_an_argument_error_with_an_empty_string_ID.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/without_content_type/raises_an_argument_error_with_an_integer_ID.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/without_content_type/requests_an_open_annotation_by_ID_accepting_a_default_JSON-LD_content.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/without_content_type/returns_an_EMPTY_RDF_graph_for_a_500_server_response.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/without_content_type/returns_an_EMPTY_RDF_graph_with_a_valid_ID_for_NO_annotation_on_the_server.yml +0 -2561
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_annotation/without_content_type/returns_an_RDF_graph_with_a_valid_ID_for_an_annotation_on_the_server.yml +0 -4946
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_iiif_annotation/requests_an_open_annotation_by_ID_using_a_IIIF_profile.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_iiif_annotation/returns_an_RDF_Graph_of_an_open_annotation.yml +0 -2746
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_oa_annotation/requests_an_open_annotation_by_ID_using_an_OA_profile.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/GET_annotation_by_ID_/_get_oa_annotation/returns_an_RDF_Graph_of_an_open_annotation.yml +0 -4946
- data/spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/does_not_log_exceptions_for_missing_annotations_404_responses_.yml +0 -64
- data/spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/does_not_log_exceptions_for_missing_annotations_410_responses_.yml +0 -64
- data/spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/logs_exceptions.yml +0 -64
- data/spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_FALSE_for_a_500_response_to_a_DELETE_request.yml +0 -64
- data/spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_200_response_to_a_DELETE_request.yml +0 -64
- data/spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_202_response_to_a_DELETE_request.yml +0 -64
- data/spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_204_response_to_a_DELETE_request.yml +0 -64
- data/spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_404_response_to_a_DELETE_request.yml +0 -64
- data/spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_410_response_to_a_DELETE_request.yml +0 -64
- data/spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_when_deleting_an_open_annotation_that_exists.yml +0 -2549
- data/spec/fixtures/vcr_cassettes/TriannonClient/_post_annotation/logs_exceptions.yml +0 -5355
- data/spec/fixtures/vcr_cassettes/TriannonClient/_post_annotation/logs_exceptions_for_RestClient_Exception.yml +0 -5355
- data/spec/fixtures/vcr_cassettes/TriannonClient/_post_annotation/returns_a_RestClient_Response_object.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_annotation_id/returns_a_String_ID_from_the_RDF_URI_of_an_annotation.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_annotation_id/returns_a_String_ID_that_is_not_empty.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_annotation_uris/returns_an_RDF_URI_that_is_a_valid_URI.yml +0 -2551
- data/spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_annotation_uris/returns_an_array_of_RDF_URI_from_an_RDF_Graph_of_an_annotation.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_response2graph/accepts_a_RestClient_Response_instance.yml +0 -4898
- data/spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_response2graph/raises_ArgumentError_when_given_an_empty_String.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_response2graph/raises_ArgumentError_when_given_nil.yml +0 -2502
- data/spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_response2graph/returns_an_RDF_Graph.yml +0 -2502
- data/spec/lib/triannon-client/triannon_client_spec.rb +0 -546
data/spec/spec_helper.rb
CHANGED
@@ -1,20 +1,156 @@
|
|
1
|
+
require 'pry' # for debugging specs
|
2
|
+
|
3
|
+
require 'simplecov'
|
1
4
|
require 'coveralls'
|
2
|
-
|
5
|
+
SimpleCov.profiles.define 'triannon-client' do
|
6
|
+
add_filter 'pkg'
|
7
|
+
add_filter 'spec'
|
8
|
+
add_filter 'vendor'
|
9
|
+
end
|
10
|
+
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
11
|
+
SimpleCov::Formatter::HTMLFormatter,
|
12
|
+
Coveralls::SimpleCov::Formatter
|
13
|
+
]
|
14
|
+
SimpleCov.start 'triannon-client'
|
3
15
|
|
16
|
+
# Ensure there are no ENV configuration values.
|
17
|
+
FileUtils.mv '.env', '.env_bak', force: true
|
18
|
+
config_keys = ENV.keys.select {|k| k =~ /TRIANNON/ }
|
19
|
+
config_keys.each {|k| ENV.delete k }
|
4
20
|
require 'triannon-client'
|
21
|
+
::TriannonClient.reset
|
22
|
+
|
5
23
|
require 'rspec'
|
6
24
|
RSpec.configure do |config|
|
25
|
+
# config.fail_fast = true
|
7
26
|
end
|
8
27
|
|
9
28
|
require 'vcr'
|
10
|
-
cassette_ttl =
|
29
|
+
cassette_ttl = 7 * 24 * 60 * 60 # 7 days, in seconds
|
11
30
|
VCR.configure do |c|
|
12
31
|
c.cassette_library_dir = 'spec/fixtures/vcr_cassettes'
|
13
32
|
c.hook_into :webmock
|
14
|
-
c.allow_http_connections_when_no_cassette =
|
33
|
+
c.allow_http_connections_when_no_cassette = false
|
15
34
|
c.default_cassette_options = {
|
16
|
-
:record => :new_episodes,
|
35
|
+
:record => :new_episodes, # :once is default
|
17
36
|
:re_record_interval => cassette_ttl
|
18
37
|
}
|
19
38
|
c.configure_rspec_metadata!
|
20
39
|
end
|
40
|
+
|
41
|
+
def triannon_config_no_auth
|
42
|
+
begin
|
43
|
+
triannon_reset
|
44
|
+
::TriannonClient.configure do |config|
|
45
|
+
config.debug = false
|
46
|
+
config.host = 'http://localhost:3000'
|
47
|
+
config.client_id = ''
|
48
|
+
config.client_pass = ''
|
49
|
+
config.container = '/annotations/foo'
|
50
|
+
config.container_user = ''
|
51
|
+
config.container_workgroups = ''
|
52
|
+
end
|
53
|
+
true
|
54
|
+
rescue
|
55
|
+
false
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
def triannon_config_auth
|
60
|
+
begin
|
61
|
+
triannon_reset
|
62
|
+
::TriannonClient.configure do |config|
|
63
|
+
config.debug = false
|
64
|
+
config.host = 'http://localhost:3000'
|
65
|
+
config.client_id = 'clientA'
|
66
|
+
config.client_pass = 'secretA'
|
67
|
+
config.container = '/annotations/bar'
|
68
|
+
config.container_user = ''
|
69
|
+
config.container_workgroups = 'org:wg-A, org:wg-B'
|
70
|
+
end
|
71
|
+
true
|
72
|
+
rescue
|
73
|
+
false
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
def triannon_reset
|
78
|
+
config_keys = ENV.keys.select {|k| k =~ /TRIANNON/ }
|
79
|
+
config_keys.each {|k| ENV.delete k }
|
80
|
+
::TriannonClient.reset
|
81
|
+
end
|
82
|
+
|
83
|
+
def create_client
|
84
|
+
triannon_config_auth
|
85
|
+
TriannonClient::TriannonClient.new
|
86
|
+
end
|
87
|
+
|
88
|
+
def clear_annotations(cassette='CRUD/clear_annotations')
|
89
|
+
VCR.use_cassette(cassette) do
|
90
|
+
client = create_client
|
91
|
+
client.authenticate
|
92
|
+
annos = client.get_annotations
|
93
|
+
q = [nil, RDF.type, RDF::Vocab::OA.Annotation]
|
94
|
+
anno_ids = annos.query(q).subjects.collect {|s| client.annotation_id(s)}
|
95
|
+
anno_ids.each {|id| client.delete_annotation(id) }
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
def create_annotation(cassette='CRUD/create_annotation')
|
100
|
+
VCR.use_cassette(cassette) do
|
101
|
+
client = create_client
|
102
|
+
client.authenticate
|
103
|
+
r = client.post_annotation(jsonld_oa)
|
104
|
+
g = client.response2graph(r)
|
105
|
+
uris = client.annotation_uris(g)
|
106
|
+
id = client.annotation_id(uris.first)
|
107
|
+
{
|
108
|
+
response: r,
|
109
|
+
graph: g,
|
110
|
+
uris: uris,
|
111
|
+
id: id
|
112
|
+
}
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
def delete_annotation(id, cassette='CRUD/delete_annotation')
|
117
|
+
VCR.use_cassette(cassette) do
|
118
|
+
client = create_client
|
119
|
+
client.authenticate
|
120
|
+
client.delete_annotation(id)
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
def graph_is_empty(graph)
|
125
|
+
expect(graph).to be_instance_of RDF::Graph
|
126
|
+
expect(graph).to be_empty
|
127
|
+
end
|
128
|
+
|
129
|
+
def graph_contains_open_annotation(graph, uris)
|
130
|
+
expect(graph).to be_instance_of RDF::Graph
|
131
|
+
graph_contains_statements(graph)
|
132
|
+
expect(uris).to be_instance_of Array
|
133
|
+
expect(uris.first).to be_instance_of RDF::URI
|
134
|
+
result = graph.query([nil, RDF.type, RDF::Vocab::OA.Annotation])
|
135
|
+
expect(result.size).to be > 0
|
136
|
+
intersection = result.subjects.to_a & uris
|
137
|
+
expect(intersection).not_to be_empty
|
138
|
+
end
|
139
|
+
|
140
|
+
def graph_contains_statements(graph)
|
141
|
+
expect(graph).to be_instance_of RDF::Graph
|
142
|
+
expect(graph).not_to be_empty
|
143
|
+
expect(graph.size).to be > 2
|
144
|
+
end
|
145
|
+
|
146
|
+
def jsonld_accept
|
147
|
+
{:accept=>"application/ld+json"}
|
148
|
+
end
|
149
|
+
|
150
|
+
def jsonld_content
|
151
|
+
{content_type: 'application/ld+json'}
|
152
|
+
end
|
153
|
+
|
154
|
+
def jsonld_oa
|
155
|
+
@oa_jsonld ||= '{"@context":"http://iiif.io/api/presentation/2/context.json","@graph":[{"@id":"_:g70349699654640","@type":["dctypes:Text","cnt:ContentAsText"],"chars":"I love this!","format":"text/plain","language":"en"},{"@type":"oa:Annotation","motivation":"oa:commenting","on":"http://purl.stanford.edu/kq131cs7229","resource":"_:g70349699654640"}]}'
|
156
|
+
end
|
data/triannon-client.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: triannon-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Darren Weber
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dotenv
|
@@ -188,6 +188,7 @@ extra_rdoc_files:
|
|
188
188
|
- LICENSE
|
189
189
|
files:
|
190
190
|
- ".env_example"
|
191
|
+
- ".rspec"
|
191
192
|
- Gemfile
|
192
193
|
- LICENSE
|
193
194
|
- README.md
|
@@ -195,82 +196,61 @@ files:
|
|
195
196
|
- lib/triannon-client.rb
|
196
197
|
- lib/triannon-client/configuration.rb
|
197
198
|
- lib/triannon-client/triannon_client.rb
|
198
|
-
- spec/fixtures/vcr_cassettes/
|
199
|
-
- spec/fixtures/vcr_cassettes/
|
200
|
-
- spec/fixtures/vcr_cassettes/
|
201
|
-
- spec/fixtures/vcr_cassettes/
|
202
|
-
- spec/fixtures/vcr_cassettes/
|
203
|
-
- spec/fixtures/vcr_cassettes/
|
204
|
-
- spec/fixtures/vcr_cassettes/
|
205
|
-
- spec/fixtures/vcr_cassettes/
|
206
|
-
- spec/fixtures/vcr_cassettes/
|
207
|
-
- spec/fixtures/vcr_cassettes/
|
208
|
-
- spec/fixtures/vcr_cassettes/
|
209
|
-
- spec/fixtures/vcr_cassettes/
|
210
|
-
- spec/fixtures/vcr_cassettes/
|
211
|
-
- spec/fixtures/vcr_cassettes/
|
212
|
-
- spec/fixtures/vcr_cassettes/
|
213
|
-
- spec/fixtures/vcr_cassettes/
|
214
|
-
- spec/fixtures/vcr_cassettes/
|
215
|
-
- spec/fixtures/vcr_cassettes/
|
216
|
-
- spec/fixtures/vcr_cassettes/
|
217
|
-
- spec/fixtures/vcr_cassettes/
|
218
|
-
- spec/fixtures/vcr_cassettes/
|
219
|
-
- spec/fixtures/vcr_cassettes/
|
220
|
-
- spec/fixtures/vcr_cassettes/
|
221
|
-
- spec/fixtures/vcr_cassettes/
|
222
|
-
- spec/fixtures/vcr_cassettes/
|
223
|
-
- spec/fixtures/vcr_cassettes/
|
224
|
-
- spec/fixtures/vcr_cassettes/
|
225
|
-
- spec/fixtures/vcr_cassettes/
|
226
|
-
- spec/fixtures/vcr_cassettes/
|
227
|
-
- spec/fixtures/vcr_cassettes/
|
228
|
-
- spec/fixtures/vcr_cassettes/
|
229
|
-
- spec/fixtures/vcr_cassettes/
|
230
|
-
- spec/fixtures/vcr_cassettes/
|
231
|
-
- spec/fixtures/vcr_cassettes/
|
232
|
-
- spec/fixtures/vcr_cassettes/
|
233
|
-
- spec/fixtures/vcr_cassettes/
|
234
|
-
- spec/fixtures/vcr_cassettes/
|
235
|
-
- spec/fixtures/vcr_cassettes/
|
236
|
-
- spec/fixtures/vcr_cassettes/
|
237
|
-
- spec/fixtures/vcr_cassettes/
|
238
|
-
- spec/fixtures/vcr_cassettes/
|
239
|
-
- spec/fixtures/vcr_cassettes/
|
240
|
-
- spec/fixtures/vcr_cassettes/
|
241
|
-
- spec/fixtures/vcr_cassettes/
|
242
|
-
- spec/fixtures/vcr_cassettes/
|
243
|
-
- spec/fixtures/vcr_cassettes/
|
244
|
-
- spec/fixtures/vcr_cassettes/
|
245
|
-
- spec/fixtures/vcr_cassettes/
|
246
|
-
- spec/fixtures/vcr_cassettes/
|
247
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/logs_exceptions.yml
|
248
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_FALSE_for_a_500_response_to_a_DELETE_request.yml
|
249
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_200_response_to_a_DELETE_request.yml
|
250
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_202_response_to_a_DELETE_request.yml
|
251
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_204_response_to_a_DELETE_request.yml
|
252
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_404_response_to_a_DELETE_request.yml
|
253
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_410_response_to_a_DELETE_request.yml
|
254
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_when_deleting_an_open_annotation_that_does_NOT_exist.yml
|
255
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_when_deleting_an_open_annotation_that_exists.yml
|
256
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/validates_the_annotation_ID.yml
|
257
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_get_annotations/returns_an_RDF_Graph.yml
|
258
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_get_annotations/returns_an_RDF_Graph_that_contains_an_AnnotationList.yml
|
259
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_get_annotations/returns_an_annotation_list_with_an_annotation_created_by_a_prior_POST.yml
|
260
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_post_annotation/does_not_raise_an_error_when_submitting_a_valid_open_annotation.yml
|
261
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_post_annotation/logs_exceptions.yml
|
262
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_post_annotation/logs_exceptions_for_RestClient_Exception.yml
|
263
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_post_annotation/returns_a_RestClient_Response_object.yml
|
264
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_annotation_id/returns_a_String_ID_from_the_RDF_URI_of_an_annotation.yml
|
265
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_annotation_id/returns_a_String_ID_that_is_not_empty.yml
|
266
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_annotation_uris/returns_an_RDF_URI_that_is_a_valid_URI.yml
|
267
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_annotation_uris/returns_an_array_of_RDF_URI_from_an_RDF_Graph_of_an_annotation.yml
|
268
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_response2graph/accepts_a_RestClient_Response_instance.yml
|
269
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_response2graph/raises_ArgumentError_when_given_an_empty_String.yml
|
270
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_response2graph/raises_ArgumentError_when_given_nil.yml
|
271
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_response2graph/returns_an_RDF_Graph.yml
|
199
|
+
- spec/fixtures/vcr_cassettes/CRUD/create_annotation.yml
|
200
|
+
- spec/fixtures/vcr_cassettes/TriannonClientAUTH/with_authentication/behaves_like_authenticate/-_authenticate_returns_true.yml
|
201
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/POST_401_response_retries_and_logs_RestClient_Exception_message.yml
|
202
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/POST_403_response_does_not_retry_and_logs_RestClient_Exception_message.yml
|
203
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/POST_500_response_does_not_retry_and_logs_RestClient_Exception_message.yml
|
204
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/does_not_raise_an_error_when_submitting_a_valid_open_annotation.yml
|
205
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/logs_RuntimeError_message.yml
|
206
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/returns_a_RestClient_Response_object.yml
|
207
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/without_authentication/behaves_like_create_annotations/does_not_raise_an_error_when_submitting_a_valid_open_annotation.yml
|
208
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/clear_annotations.yml
|
209
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/with_authentication/behaves_like_delete_annotations/returns_TRUE_when_deleting_an_annotation_that_does_NOT_exist.yml
|
210
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/with_authentication/behaves_like_delete_annotations/returns_TRUE_when_deleting_an_annotation_that_exists.yml
|
211
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/with_authentication/behaves_like_delete_annotations/validates_the_annotation_ID.yml
|
212
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/without_authentication/behaves_like_delete_annotations/returns_TRUE_when_deleting_an_annotation_that_does_NOT_exist.yml
|
213
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/without_authentication/behaves_like_delete_annotations/returns_TRUE_when_deleting_an_annotation_that_exists.yml
|
214
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/without_authentication/behaves_like_delete_annotations/validates_the_annotation_ID.yml
|
215
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/clear_annotations.yml
|
216
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_get_annotations/returns_an_RDF_Graph.yml
|
217
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_get_annotations/returns_an_RDF_Graph_that_contains_an_AnnotationList.yml
|
218
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_get_annotations/returns_an_annotation_list_with_an_annotation_created_by_a_prior_POST.yml
|
219
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_get_iiif_annotation/returns_an_RDF_Graph_of_an_open_annotation.yml
|
220
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_get_oa_annotation/returns_an_RDF_Graph_of_an_open_annotation.yml
|
221
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_response2graph/accepts_a_RestClient_Response_instance.yml
|
222
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/csvm_json_.yml
|
223
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/n-quads_.yml
|
224
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/n-triples_.yml
|
225
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/rdf_json_.yml
|
226
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/rdf_n3_.yml
|
227
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/trig_.yml
|
228
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/trix_.yml
|
229
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/turtle_.yml
|
230
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/x-ld_json_.yml
|
231
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/x-trig_.yml
|
232
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/csv_.yml
|
233
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/n3_.yml
|
234
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/plain_.yml
|
235
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/rdf_n3_.yml
|
236
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/rdf_turtle_.yml
|
237
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/tab-separated-values_.yml
|
238
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/x-nquads_.yml
|
239
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/gets_an_open_annotation_by_ID_with_content_type_application/ld_json_.yml
|
240
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/gets_an_open_annotation_by_ID_with_content_type_application/rdf_xml_.yml
|
241
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/gets_an_open_annotation_by_ID_with_content_type_application/x-turtle_.yml
|
242
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/gets_an_open_annotation_by_ID_with_content_type_text/turtle_.yml
|
243
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_default_content_type/checks_the_annotation_ID.yml
|
244
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_default_content_type/returns_an_EMPTY_RDF_graph_with_a_valid_ID_for_NO_annotation_on_the_server.yml
|
245
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_default_content_type/returns_an_RDF_graph_with_a_valid_ID_for_an_annotation_on_the_server.yml
|
246
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/clear_annotations.yml
|
247
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/create_annotation.yml
|
272
248
|
- spec/lib/triannon-client/configuration_spec.rb
|
273
|
-
- spec/lib/triannon-client/
|
249
|
+
- spec/lib/triannon-client/triannon_client_auth_spec.rb
|
250
|
+
- spec/lib/triannon-client/triannon_client_class_spec.rb
|
251
|
+
- spec/lib/triannon-client/triannon_client_create_spec.rb
|
252
|
+
- spec/lib/triannon-client/triannon_client_delete_spec.rb
|
253
|
+
- spec/lib/triannon-client/triannon_client_read_spec.rb
|
274
254
|
- spec/lib/triannon-client_spec.rb
|
275
255
|
- spec/spec_helper.rb
|
276
256
|
- triannon-client.gemspec
|
@@ -294,87 +274,66 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
294
274
|
version: 1.3.6
|
295
275
|
requirements: []
|
296
276
|
rubyforge_project:
|
297
|
-
rubygems_version: 2.4.
|
277
|
+
rubygems_version: 2.4.8
|
298
278
|
signing_key:
|
299
279
|
specification_version: 4
|
300
280
|
summary: A client for RESTful transactions with a triannon annotation server
|
301
281
|
test_files:
|
302
|
-
- spec/fixtures/vcr_cassettes/
|
303
|
-
- spec/fixtures/vcr_cassettes/
|
304
|
-
- spec/fixtures/vcr_cassettes/
|
305
|
-
- spec/fixtures/vcr_cassettes/
|
306
|
-
- spec/fixtures/vcr_cassettes/
|
307
|
-
- spec/fixtures/vcr_cassettes/
|
308
|
-
- spec/fixtures/vcr_cassettes/
|
309
|
-
- spec/fixtures/vcr_cassettes/
|
310
|
-
- spec/fixtures/vcr_cassettes/
|
311
|
-
- spec/fixtures/vcr_cassettes/
|
312
|
-
- spec/fixtures/vcr_cassettes/
|
313
|
-
- spec/fixtures/vcr_cassettes/
|
314
|
-
- spec/fixtures/vcr_cassettes/
|
315
|
-
- spec/fixtures/vcr_cassettes/
|
316
|
-
- spec/fixtures/vcr_cassettes/
|
317
|
-
- spec/fixtures/vcr_cassettes/
|
318
|
-
- spec/fixtures/vcr_cassettes/
|
319
|
-
- spec/fixtures/vcr_cassettes/
|
320
|
-
- spec/fixtures/vcr_cassettes/
|
321
|
-
- spec/fixtures/vcr_cassettes/
|
322
|
-
- spec/fixtures/vcr_cassettes/
|
323
|
-
- spec/fixtures/vcr_cassettes/
|
324
|
-
- spec/fixtures/vcr_cassettes/
|
325
|
-
- spec/fixtures/vcr_cassettes/
|
326
|
-
- spec/fixtures/vcr_cassettes/
|
327
|
-
- spec/fixtures/vcr_cassettes/
|
328
|
-
- spec/fixtures/vcr_cassettes/
|
329
|
-
- spec/fixtures/vcr_cassettes/
|
330
|
-
- spec/fixtures/vcr_cassettes/
|
331
|
-
- spec/fixtures/vcr_cassettes/
|
332
|
-
- spec/fixtures/vcr_cassettes/
|
333
|
-
- spec/fixtures/vcr_cassettes/
|
334
|
-
- spec/fixtures/vcr_cassettes/
|
335
|
-
- spec/fixtures/vcr_cassettes/
|
336
|
-
- spec/fixtures/vcr_cassettes/
|
337
|
-
- spec/fixtures/vcr_cassettes/
|
338
|
-
- spec/fixtures/vcr_cassettes/
|
339
|
-
- spec/fixtures/vcr_cassettes/
|
340
|
-
- spec/fixtures/vcr_cassettes/
|
341
|
-
- spec/fixtures/vcr_cassettes/
|
342
|
-
- spec/fixtures/vcr_cassettes/
|
343
|
-
- spec/fixtures/vcr_cassettes/
|
344
|
-
- spec/fixtures/vcr_cassettes/
|
345
|
-
- spec/fixtures/vcr_cassettes/
|
346
|
-
- spec/fixtures/vcr_cassettes/
|
347
|
-
- spec/fixtures/vcr_cassettes/
|
348
|
-
- spec/fixtures/vcr_cassettes/
|
349
|
-
- spec/fixtures/vcr_cassettes/
|
350
|
-
- spec/fixtures/vcr_cassettes/
|
351
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/logs_exceptions.yml
|
352
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_FALSE_for_a_500_response_to_a_DELETE_request.yml
|
353
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_200_response_to_a_DELETE_request.yml
|
354
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_202_response_to_a_DELETE_request.yml
|
355
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_204_response_to_a_DELETE_request.yml
|
356
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_404_response_to_a_DELETE_request.yml
|
357
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_for_a_410_response_to_a_DELETE_request.yml
|
358
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_when_deleting_an_open_annotation_that_does_NOT_exist.yml
|
359
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/returns_TRUE_when_deleting_an_open_annotation_that_exists.yml
|
360
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_delete_annotation/validates_the_annotation_ID.yml
|
361
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_get_annotations/returns_an_RDF_Graph.yml
|
362
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_get_annotations/returns_an_RDF_Graph_that_contains_an_AnnotationList.yml
|
363
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_get_annotations/returns_an_annotation_list_with_an_annotation_created_by_a_prior_POST.yml
|
364
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_post_annotation/does_not_raise_an_error_when_submitting_a_valid_open_annotation.yml
|
365
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_post_annotation/logs_exceptions.yml
|
366
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_post_annotation/logs_exceptions_for_RestClient_Exception.yml
|
367
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/_post_annotation/returns_a_RestClient_Response_object.yml
|
368
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_annotation_id/returns_a_String_ID_from_the_RDF_URI_of_an_annotation.yml
|
369
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_annotation_id/returns_a_String_ID_that_is_not_empty.yml
|
370
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_annotation_uris/returns_an_RDF_URI_that_is_a_valid_URI.yml
|
371
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_annotation_uris/returns_an_array_of_RDF_URI_from_an_RDF_Graph_of_an_annotation.yml
|
372
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_response2graph/accepts_a_RestClient_Response_instance.yml
|
373
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_response2graph/raises_ArgumentError_when_given_an_empty_String.yml
|
374
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_response2graph/raises_ArgumentError_when_given_nil.yml
|
375
|
-
- spec/fixtures/vcr_cassettes/TriannonClient/response_processing_utilities/_response2graph/returns_an_RDF_Graph.yml
|
282
|
+
- spec/fixtures/vcr_cassettes/CRUD/create_annotation.yml
|
283
|
+
- spec/fixtures/vcr_cassettes/TriannonClientAUTH/with_authentication/behaves_like_authenticate/-_authenticate_returns_true.yml
|
284
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/POST_401_response_retries_and_logs_RestClient_Exception_message.yml
|
285
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/POST_403_response_does_not_retry_and_logs_RestClient_Exception_message.yml
|
286
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/POST_500_response_does_not_retry_and_logs_RestClient_Exception_message.yml
|
287
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/does_not_raise_an_error_when_submitting_a_valid_open_annotation.yml
|
288
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/logs_RuntimeError_message.yml
|
289
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/with_authentication/behaves_like_create_annotations/returns_a_RestClient_Response_object.yml
|
290
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/_post_annotation/without_authentication/behaves_like_create_annotations/does_not_raise_an_error_when_submitting_a_valid_open_annotation.yml
|
291
|
+
- spec/fixtures/vcr_cassettes/TriannonClientCREATE/clear_annotations.yml
|
292
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/with_authentication/behaves_like_delete_annotations/returns_TRUE_when_deleting_an_annotation_that_does_NOT_exist.yml
|
293
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/with_authentication/behaves_like_delete_annotations/returns_TRUE_when_deleting_an_annotation_that_exists.yml
|
294
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/with_authentication/behaves_like_delete_annotations/validates_the_annotation_ID.yml
|
295
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/without_authentication/behaves_like_delete_annotations/returns_TRUE_when_deleting_an_annotation_that_does_NOT_exist.yml
|
296
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/without_authentication/behaves_like_delete_annotations/returns_TRUE_when_deleting_an_annotation_that_exists.yml
|
297
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/_delete_annotation/without_authentication/behaves_like_delete_annotations/validates_the_annotation_ID.yml
|
298
|
+
- spec/fixtures/vcr_cassettes/TriannonClientDELETE/clear_annotations.yml
|
299
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_get_annotations/returns_an_RDF_Graph.yml
|
300
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_get_annotations/returns_an_RDF_Graph_that_contains_an_AnnotationList.yml
|
301
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_get_annotations/returns_an_annotation_list_with_an_annotation_created_by_a_prior_POST.yml
|
302
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_get_iiif_annotation/returns_an_RDF_Graph_of_an_open_annotation.yml
|
303
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_get_oa_annotation/returns_an_RDF_Graph_of_an_open_annotation.yml
|
304
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/_response2graph/accepts_a_RestClient_Response_instance.yml
|
305
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/csvm_json_.yml
|
306
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/n-quads_.yml
|
307
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/n-triples_.yml
|
308
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/rdf_json_.yml
|
309
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/rdf_n3_.yml
|
310
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/trig_.yml
|
311
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/trix_.yml
|
312
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/turtle_.yml
|
313
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/x-ld_json_.yml
|
314
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_application/x-trig_.yml
|
315
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/csv_.yml
|
316
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/n3_.yml
|
317
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/plain_.yml
|
318
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/rdf_n3_.yml
|
319
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/rdf_turtle_.yml
|
320
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/tab-separated-values_.yml
|
321
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/cannot_get_an_open_annotation_by_ID_with_content_type_text/x-nquads_.yml
|
322
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/gets_an_open_annotation_by_ID_with_content_type_application/ld_json_.yml
|
323
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/gets_an_open_annotation_by_ID_with_content_type_application/rdf_xml_.yml
|
324
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/gets_an_open_annotation_by_ID_with_content_type_application/x-turtle_.yml
|
325
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_custom_content_type/gets_an_open_annotation_by_ID_with_content_type_text/turtle_.yml
|
326
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_default_content_type/checks_the_annotation_ID.yml
|
327
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_default_content_type/returns_an_EMPTY_RDF_graph_with_a_valid_ID_for_NO_annotation_on_the_server.yml
|
328
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/GET/annotation_by_ID/using_default_content_type/returns_an_RDF_graph_with_a_valid_ID_for_an_annotation_on_the_server.yml
|
329
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/clear_annotations.yml
|
330
|
+
- spec/fixtures/vcr_cassettes/TriannonClientREAD/create_annotation.yml
|
376
331
|
- spec/lib/triannon-client/configuration_spec.rb
|
377
|
-
- spec/lib/triannon-client/
|
332
|
+
- spec/lib/triannon-client/triannon_client_auth_spec.rb
|
333
|
+
- spec/lib/triannon-client/triannon_client_class_spec.rb
|
334
|
+
- spec/lib/triannon-client/triannon_client_create_spec.rb
|
335
|
+
- spec/lib/triannon-client/triannon_client_delete_spec.rb
|
336
|
+
- spec/lib/triannon-client/triannon_client_read_spec.rb
|
378
337
|
- spec/lib/triannon-client_spec.rb
|
379
338
|
- spec/spec_helper.rb
|
380
339
|
has_rdoc:
|