Skip to content

Commit a84aaf1

Browse files
committedFeb 1, 2019
DEV: correct heisentest testing for avatars
If for some reason we created andupload with id 1 in the test then the test would fail. This can happen if this is the absolute first test to run on the db. Fix sets the upload to a legitimate which in turn means the last upload will not be upload id 1 and stops using id hard coding for the testing.
1 parent bbaa3e9 commit a84aaf1

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed
 

‎spec/models/user_avatar_spec.rb

+10-4
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,10 @@
125125
end
126126

127127
it 'can leave gravatar alone' do
128-
user = Fabricate(:user, uploaded_avatar_id: 1)
129-
user.user_avatar.update_columns(gravatar_upload_id: 1)
128+
upload = Fabricate(:upload)
129+
130+
user = Fabricate(:user, uploaded_avatar_id: upload.id)
131+
user.user_avatar.update_columns(gravatar_upload_id: upload.id)
130132

131133
stub_request(:get, "http://thisfakesomething.something.com/")
132134
.to_return(status: 200, body: file_from_fixtures("logo.png"), headers: {})
@@ -138,8 +140,12 @@
138140
end.to change { Upload.count }.by(1)
139141

140142
user.reload
141-
expect(user.uploaded_avatar_id).to eq(1)
142-
expect(user.user_avatar.custom_upload_id).to eq(Upload.last.id)
143+
expect(user.uploaded_avatar_id).to eq(upload.id)
144+
145+
last_id = Upload.last.id
146+
147+
expect(last_id).not_to eq(upload.id)
148+
expect(user.user_avatar.custom_upload_id).to eq(last_id)
143149
end
144150

145151
describe 'when avatar url returns an invalid status code' do

0 commit comments

Comments
 (0)