Fix /api/v1/accounts/update_credentials tests (#1357)
This commit is contained in:
		
							parent
							
								
									43f955e31f
								
							
						
					
					
						commit
						15d442cf9d
					
				
					 3 changed files with 35 additions and 29 deletions
				
			
		|  | @ -17,10 +17,8 @@ class Api::V1::AccountsController < ApiController | |||
|   end | ||||
| 
 | ||||
|   def update_credentials | ||||
|     @account = current_user.account | ||||
| 
 | ||||
|     @account.update_attributes!(account_params) | ||||
| 
 | ||||
|     current_account.update!(account_params) | ||||
|     @account = current_account | ||||
|     render action: :show | ||||
|   end | ||||
| 
 | ||||
|  | @ -146,6 +144,6 @@ class Api::V1::AccountsController < ApiController | |||
|   end | ||||
| 
 | ||||
|   def account_params | ||||
|     @account_params ||= params.permit(:display_name, :note, :avatar, :header) | ||||
|     params.permit(:display_name, :note, :avatar, :header) | ||||
|   end | ||||
| end | ||||
|  |  | |||
|  | @ -25,35 +25,41 @@ RSpec.describe Api::V1::AccountsController, type: :controller do | |||
|   end | ||||
| 
 | ||||
|   describe 'PATCH #update_credentials' do | ||||
|     it 'returns http success' do | ||||
|       expect(user.account.avatar).not_to exist | ||||
|       expect(user.account.header).not_to exist | ||||
| 
 | ||||
|     describe 'with valid data' do | ||||
|       before do | ||||
|         avatar = File.read(Rails.root.join('app', 'assets', 'images', 'logo.png')) | ||||
|         header = File.read(Rails.root.join('app', 'assets', 'images', 'mastodon-getting-started.png')) | ||||
|       params = { | ||||
| 
 | ||||
|         patch :update_credentials, params: { | ||||
|           display_name: "Alice Isn't Dead", | ||||
|           note: "Hi!\n\nToot toot!", | ||||
|           avatar: "data:image/png;base64,#{Base64.encode64(avatar)}", | ||||
|         header: "data:image/png;base64,#{Base64.encode64(header)}" | ||||
|           header: "data:image/png;base64,#{Base64.encode64(header)}", | ||||
|         } | ||||
|       patch :update_credentials, params: params | ||||
|       expect(response).to have_http_status(:success) | ||||
|       end | ||||
| 
 | ||||
|       user.reload | ||||
|       it 'returns http success' do | ||||
|         expect(response).to have_http_status(:success) | ||||
|       end | ||||
| 
 | ||||
|       it 'updates account info' do | ||||
|         user.account.reload | ||||
| 
 | ||||
|         expect(user.account.display_name).to eq("Alice Isn't Dead") | ||||
|         expect(user.account.note).to eq("Hi!\n\nToot toot!") | ||||
|         expect(user.account.avatar).to exist | ||||
|         expect(user.account.header).to exist | ||||
|       end | ||||
|     end | ||||
| 
 | ||||
|     it 'respects Account validations' do | ||||
|       note = "This is too long. " * 10 | ||||
|       error = { error: 'The account could not be updated: Note is too long (maximum is 160 characters)' }.to_json | ||||
|       patch :update_credentials, params: { note: note } | ||||
|     describe 'with invalid data' do | ||||
|       before do | ||||
|         patch :update_credentials, params: { note: 'This is too long. ' * 10 } | ||||
|       end | ||||
| 
 | ||||
|       it 'returns http unprocessable entity' do | ||||
|         expect(response).to have_http_status(:unprocessable_entity) | ||||
|       expect(response.body).to eq(error) | ||||
|       end | ||||
|     end | ||||
|   end | ||||
| 
 | ||||
|  |  | |||
|  | @ -5,6 +5,7 @@ RSpec.describe Auth::RegistrationsController, type: :controller do | |||
| 
 | ||||
|   describe 'GET #new' do | ||||
|     before do | ||||
|       Setting.open_registrations = true | ||||
|       request.env["devise.mapping"] = Devise.mappings[:user] | ||||
|     end | ||||
| 
 | ||||
|  | @ -16,6 +17,7 @@ RSpec.describe Auth::RegistrationsController, type: :controller do | |||
| 
 | ||||
|   describe 'POST #create' do | ||||
|     before do | ||||
|       Setting.open_registrations = true | ||||
|       request.env["devise.mapping"] = Devise.mappings[:user] | ||||
|       post :create, params: { user: { account_attributes: { username: 'test' }, email: 'test@example.com', password: '12345678', password_confirmation: '12345678' } } | ||||
|     end | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue