49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require "api"
 | |
| 
 | |
| describe Homebrew::API::Cask do
 | |
|   let(:cache_dir) { mktmpdir }
 | |
| 
 | |
|   before do
 | |
|     stub_const("Homebrew::API::HOMEBREW_CACHE_API", cache_dir)
 | |
|     Homebrew::API.clear_cache
 | |
|     described_class.clear_cache
 | |
|   end
 | |
| 
 | |
|   def mock_curl_download(stdout:)
 | |
|     allow(Utils::Curl).to receive(:curl_download) do |*_args, **kwargs|
 | |
|       kwargs[:to].write stdout
 | |
|     end
 | |
|     allow(Homebrew::API).to receive(:verify_and_parse_jws) do |json_data|
 | |
|       [true, json_data]
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   describe "::all_casks" do
 | |
|     let(:casks_json) do
 | |
|       <<~EOS
 | |
|         [{
 | |
|           "token": "foo",
 | |
|           "url": "https://brew.sh/foo"
 | |
|         }, {
 | |
|           "token": "bar",
 | |
|           "url": "https://brew.sh/bar"
 | |
|         }]
 | |
|       EOS
 | |
|     end
 | |
|     let(:casks_hash) do
 | |
|       {
 | |
|         "foo" => { "url" => "https://brew.sh/foo" },
 | |
|         "bar" => { "url" => "https://brew.sh/bar" },
 | |
|       }
 | |
|     end
 | |
| 
 | |
|     it "returns the expected cask JSON list" do
 | |
|       mock_curl_download stdout: casks_json
 | |
|       casks_output = described_class.all_casks
 | |
|       expect(casks_output).to eq casks_hash
 | |
|     end
 | |
|   end
 | |
| end
 | 
