Skip to content

Commit

Permalink
Fix /api/v1/accounts/update_credentials tests (mastodon#1357)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gargron authored Apr 9, 2017
1 parent 43f955e commit 15d442c
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 30 deletions.
8 changes: 3 additions & 5 deletions app/controllers/api/v1/accounts_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ def verify_credentials
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

Expand Down Expand Up @@ -146,6 +144,6 @@ def statuses_pagination_params(core_params)
end

def account_params
@account_params ||= params.permit(:display_name, :note, :avatar, :header)
params.permit(:display_name, :note, :avatar, :header)
end
end
56 changes: 31 additions & 25 deletions spec/controllers/api/v1/accounts_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,35 +25,41 @@
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

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 = {
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)}"
}
patch :update_credentials, params: params
expect(response).to have_http_status(:success)
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'))

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)}",
}
end

user.reload
it 'returns http success' do
expect(response).to have_http_status(:success)
end

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
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 }
expect(response).to have_http_status(:unprocessable_entity)
expect(response.body).to eq(error)
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)
end
end
end

Expand Down
2 changes: 2 additions & 0 deletions spec/controllers/auth/registrations_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

describe 'GET #new' do
before do
Setting.open_registrations = true
request.env["devise.mapping"] = Devise.mappings[:user]
end

Expand All @@ -16,6 +17,7 @@

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
Expand Down

0 comments on commit 15d442c

Please sign in to comment.