#-- # Copyright: Copyright (c) 2010-2011 RightScale, Inc. # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # 'Software'), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #++ require File.expand_path(File.join(File.dirname(__FILE__), '..', 'cookbook_helper')) describe RightScraper::Resources::Cookbook do include RightScraper::SpecHelpers::DevelopmentModeEnvironment include RightScraper::CookbookHelper shared_examples_for 'a download repository' do it_should_behave_like 'a generic repository' it 'should have no tag' do parse_url(@repository)[:tag].should be_nil end it 'should have no position' do parse_url(@repository)[:position].should be_nil end it 'should have no credentials' do parse_url(@repository)[:username].should be_nil parse_url(@repository)[:password].should be_nil end end context 'with a download repository' do before(:each) do @repository = RightScraper::Repositories::Base.from_hash(:display_name => 'test repo', :repo_type => :download, :url => "http://a.site/foo/bar/baz", :first_credential => "user", :second_credential => "password") end it_should_behave_like 'a download repository' it 'should have a cookbook hash' do example_cookbook(@repository).resource_hash.should == Digest::MD5.hexdigest(RightScraper::Resources::Cookbook::EMPTY_MANIFEST_JSON) end it 'should have a cookbook hash invariant under credential changes' do old_hash = example_cookbook(@repository).resource_hash @repository.first_credential = "b-key" example_cookbook(@repository).resource_hash.should == old_hash end it 'should have a cookbook hash invariant under position changes' do example_cookbook(@repository, "foo").resource_hash.should == example_cookbook(@repository, "bar").resource_hash end end context 'with a download repository with a port' do before(:each) do @repository = RightScraper::Repositories::Base.from_hash(:display_name => 'test repo', :repo_type => :download, :url => "http://a.site:23/foo/bar/baz", :first_credential => "user", :second_credential => "password") end it_should_behave_like 'a download repository' end context 'with a download repository with just a user' do before(:each) do @repository = RightScraper::Repositories::Base.from_hash(:display_name => 'test repo', :repo_type => :download, :url => "http://a.site/foo/bar/baz", :first_credential => "user") end it_should_behave_like 'a download repository' end context 'with a weird download repository' do before(:each) do @repository = RightScraper::Repositories::Base.from_hash(:display_name => 'test repo', :repo_type => :download, :url => "urn:a.site:stuff") end it_should_behave_like 'a download repository' end context 'with a malicious download repository' do before(:each) do @repository = RightScraper::Repositories::Base.from_hash(:display_name => 'test repo', :repo_type => :download, :url => "http://foo.bar.baz.quux/%20CBLAH", :first_credential => "foo:b/ar", :second_credential => "foo@bar") end it_should_behave_like 'a download repository' end context 'with a download repository that includes a query' do before(:each) do @repository = RightScraper::Repositories::Base.from_hash(:display_name => 'test repo', :repo_type => :download, :url => "http://foo.bar.baz.quux/stuff?q=bar") end it_should_behave_like 'a download repository' end end