| 
									
										
										
										
											2017-04-17 13:58:03 -04:00
										 |  |  | require 'rails_helper' | 
					
						
							| 
									
										
										
										
											2017-04-12 10:03:37 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 13:58:03 -04:00
										 |  |  | describe 'The webfinger route' do | 
					
						
							| 
									
										
										
										
											2017-04-12 10:03:37 -04:00
										 |  |  |   let(:alice) { Fabricate(:account, username: 'alice') } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 13:58:03 -04:00
										 |  |  |   describe 'requested with standard accepts headers' do | 
					
						
							|  |  |  |     it 'returns a json response' do | 
					
						
							|  |  |  |       get webfinger_url(resource: alice.to_webfinger_s) | 
					
						
							| 
									
										
										
										
											2017-04-12 10:03:37 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-22 04:35:07 +09:00
										 |  |  |       expect(response).to have_http_status(200) | 
					
						
							| 
									
										
										
										
											2017-04-17 13:58:03 -04:00
										 |  |  |       expect(response.content_type).to eq 'application/jrd+json' | 
					
						
							| 
									
										
										
										
											2017-04-12 10:03:37 -04:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 13:58:03 -04:00
										 |  |  |   describe 'asking for json format' do | 
					
						
							|  |  |  |     it 'returns a json response for json format' do | 
					
						
							|  |  |  |       get webfinger_url(resource: alice.to_webfinger_s, format: :json) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-22 04:35:07 +09:00
										 |  |  |       expect(response).to have_http_status(200) | 
					
						
							| 
									
										
										
										
											2017-04-17 13:58:03 -04:00
										 |  |  |       expect(response.content_type).to eq 'application/jrd+json' | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it 'returns a json response for json accept header' do | 
					
						
							|  |  |  |       headers = { 'HTTP_ACCEPT' => 'application/jrd+json' } | 
					
						
							|  |  |  |       get webfinger_url(resource: alice.to_webfinger_s), headers: headers | 
					
						
							| 
									
										
										
										
											2017-04-12 10:03:37 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-22 04:35:07 +09:00
										 |  |  |       expect(response).to have_http_status(200) | 
					
						
							| 
									
										
										
										
											2017-04-17 13:58:03 -04:00
										 |  |  |       expect(response.content_type).to eq 'application/jrd+json' | 
					
						
							| 
									
										
										
										
											2017-04-12 10:03:37 -04:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |