spec/unit/middlewares/cache_spec.rb in locomotivecms_steam-1.5.0 vs spec/unit/middlewares/cache_spec.rb in locomotivecms_steam-1.5.1

- old
+ new

@@ -53,25 +53,25 @@ context 'the request is a GET' do let(:response) { nil } - before { expect(cache).to receive(:read).with('1c538f12ddad36b3fd5cb7211aac60a2').and_return(response) } + before { expect(cache).to receive(:read).with('49876cf5daaa47d21daccd3b805b5b79').and_return(response) } context 'the cache is empty' do - before { expect(cache).to receive(:write).with('1c538f12ddad36b3fd5cb7211aac60a2', Marshal.dump([200, {}, ["Hello world!"]])) } + before { expect(cache).to receive(:write).with('49876cf5daaa47d21daccd3b805b5b79', Marshal.dump([200, {}, ["Hello world!"]])) } it 'tells the CDN to cache the page and also cache it internally' do is_expected.to eq ['max-age=0, s-maxage=3600, public, must-revalidate', 'Accept-Language'] end describe 'ETag' do subject { send_request[:env]['steam.cache_etag'] } - it { is_expected.to eq '1c538f12ddad36b3fd5cb7211aac60a2' } + it { is_expected.to eq '49876cf5daaa47d21daccd3b805b5b79' } end describe 'the site administrator sets a custom cache control and vary' do @@ -102,10 +102,10 @@ subject { [send_request[:code], send_request[:headers]] } context 'based on the ETag' do - let(:etag) { '1c538f12ddad36b3fd5cb7211aac60a2' } + let(:etag) { '49876cf5daaa47d21daccd3b805b5b79' } it 'returns a 304 (Not modified) without no cache headers' do expect(subject.first).to eq 304 expect(subject.last['Cache-Control']).to eq nil end