Added #link_header spec (#6439)
This commit is contained in:
		
							parent
							
								
									67f7ffa792
								
							
						
					
					
						commit
						2bb393684b
					
				@ -1,4 +1,24 @@
 | 
				
			|||||||
require 'rails_helper'
 | 
					require 'rails_helper'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RSpec.describe FetchAtomService do
 | 
					RSpec.describe FetchAtomService do
 | 
				
			||||||
 | 
					  describe '#link_header' do
 | 
				
			||||||
 | 
					    context 'Link is Array' do
 | 
				
			||||||
 | 
					      target = FetchAtomService.new
 | 
				
			||||||
 | 
					      target.instance_variable_set('@response', 'Link' => [
 | 
				
			||||||
 | 
					        '<http://example.com/>; rel="up"; meta="bar"',
 | 
				
			||||||
 | 
					        '<http://example.com/foo>; rel="self"',
 | 
				
			||||||
 | 
					      ])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      it 'set first link as link_header' do
 | 
				
			||||||
 | 
					        expect(target.send(:link_header).links[0].href).to eq 'http://example.com/'
 | 
				
			||||||
 | 
					      end
 | 
				
			||||||
 | 
					    end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    context 'Link is not Array' do
 | 
				
			||||||
 | 
					      target = FetchAtomService.new
 | 
				
			||||||
 | 
					      target.instance_variable_set('@response', 'Link' => '<http://example.com/foo>; rel="self", <http://example.com/>; rel = "up"')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      it { expect(target.send(:link_header).links[0].href).to eq 'http://example.com/foo' }
 | 
				
			||||||
 | 
					    end
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user