Sha256: f8bd095061eb693de7d34238bd8e906cc6f1e65fdd59746fb2b8cdcce1b87074
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
# frozen_string_literal: true require_relative '../test_helper' module Excon # HCPTest # # Validate the workings of `Excon::HyperResource::Middlewares::HypertextCachePattern`. # class HCPTest < HyperMediaTest def response bicycle end def test_non_hcp_response assert_equal nil, response[:hcp] end def test_hcp_response assert response.rel('pump', hcp: true).get[:hcp] end def test_hcp_response_without_existing_response assert Excon.get(url('/product/bicycle'), hcp: true) end def test_hcp_response_with_missing_embedding response = api.rel('product', expand: { uid: 'bicycle' }, hcp: true).get assert_equal nil, response[:hcp] end def test_hcp_response_with_embedding_but_missing_embed_for_request handlebar = response.rel('handlebar', hcp: true).get assert_equal nil, handlebar[:hcp] end def test_hcp_response_with_embedded_array wheels = response.rel('wheels', hcp: true) assert wheels.map(&:get).all? { |res| res[:hcp] } end def test_nested_hcp_responses pump = response.rel('pump', hcp: true).get response = pump.rel('parts', expand: { uid: 'bicycle' }).get assert response[:hcp] end def test_hcp_resource resource = response.rel('pump', hcp: true).get.resource assert_equal Excon::HyperMedia::ResourceObject, resource.class end def test_hcp_links resource = response.rel('pump', hcp: true).get.resource assert_equal data(:parts)['_links']['self']['href'], resource._links.parts.href end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
excon-hypermedia-0.5.3 | test/excon/hcp_test.rb |