Controller spec to request spec: api/v1/accounts/lists (#28303)
		
	This commit is contained in:
		
					parent
					
						
							
								8f94502e7d
							
						
					
				
			
			
				commit
				
					
						a968898dc7
					
				
			
		
					 2 changed files with 25 additions and 25 deletions
				
			
		|  | @ -1,25 +0,0 @@ | ||||||
| # frozen_string_literal: true |  | ||||||
| 
 |  | ||||||
| require 'rails_helper' |  | ||||||
| 
 |  | ||||||
| describe Api::V1::Accounts::ListsController do |  | ||||||
|   render_views |  | ||||||
| 
 |  | ||||||
|   let(:user)    { Fabricate(:user) } |  | ||||||
|   let(:token)   { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:lists') } |  | ||||||
|   let(:account) { Fabricate(:account) } |  | ||||||
|   let(:list)    { Fabricate(:list, account: user.account) } |  | ||||||
| 
 |  | ||||||
|   before do |  | ||||||
|     allow(controller).to receive(:doorkeeper_token) { token } |  | ||||||
|     user.account.follow!(account) |  | ||||||
|     list.accounts << account |  | ||||||
|   end |  | ||||||
| 
 |  | ||||||
|   describe 'GET #index' do |  | ||||||
|     it 'returns http success' do |  | ||||||
|       get :index, params: { account_id: account.id } |  | ||||||
|       expect(response).to have_http_status(200) |  | ||||||
|     end |  | ||||||
|   end |  | ||||||
| end |  | ||||||
							
								
								
									
										25
									
								
								spec/requests/api/v1/accounts/lists_spec.rb
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								spec/requests/api/v1/accounts/lists_spec.rb
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,25 @@ | ||||||
|  | # frozen_string_literal: true | ||||||
|  | 
 | ||||||
|  | require 'rails_helper' | ||||||
|  | 
 | ||||||
|  | describe 'Accounts Lists API' do | ||||||
|  |   let(:user)     { Fabricate(:user) } | ||||||
|  |   let(:token)    { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) } | ||||||
|  |   let(:scopes)   { 'read:lists' } | ||||||
|  |   let(:headers)  { { 'Authorization' => "Bearer #{token.token}" } } | ||||||
|  |   let(:account) { Fabricate(:account) } | ||||||
|  |   let(:list)    { Fabricate(:list, account: user.account) } | ||||||
|  | 
 | ||||||
|  |   before do | ||||||
|  |     user.account.follow!(account) | ||||||
|  |     list.accounts << account | ||||||
|  |   end | ||||||
|  | 
 | ||||||
|  |   describe 'GET /api/v1/accounts/lists' do | ||||||
|  |     it 'returns http success' do | ||||||
|  |       get "/api/v1/accounts/#{account.id}/lists", headers: headers | ||||||
|  | 
 | ||||||
|  |       expect(response).to have_http_status(200) | ||||||
|  |     end | ||||||
|  |   end | ||||||
|  | end | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue