mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 15:25:35 +08:00
FIX: Heisentest - suspicious logins report was not ordered by date
The specs needed an order even though none was supplied.
This commit is contained in:
parent
86fe423f5e
commit
c23411cc69
|
@ -1441,6 +1441,7 @@ class Report
|
|||
WHERE t.action = 'suspicious'
|
||||
AND t.created_at >= :start_date
|
||||
AND t.created_at <= :end_date
|
||||
ORDER BY t.created_at DESC
|
||||
SQL
|
||||
|
||||
DB.query(sql, start_date: report.start_date, end_date: report.end_date).each do |row|
|
||||
|
|
|
@ -1006,11 +1006,10 @@ describe Report do
|
|||
context "with data" do
|
||||
it "works" do
|
||||
SiteSetting.verbose_auth_token_logging = true
|
||||
freeze_time DateTime.parse('2017-03-01 12:00')
|
||||
|
||||
UserAuthToken.log(action: "suspicious", user_id: robin.id)
|
||||
UserAuthToken.log(action: "suspicious", user_id: joffrey.id)
|
||||
UserAuthToken.log(action: "suspicious", user_id: joffrey.id)
|
||||
UserAuthToken.log(action: "suspicious", user_id: joffrey.id, created_at: 2.hours.ago)
|
||||
UserAuthToken.log(action: "suspicious", user_id: joffrey.id, created_at: 3.hours.ago)
|
||||
UserAuthToken.log(action: "suspicious", user_id: robin.id, created_at: 1.hour.ago)
|
||||
|
||||
report = Report.find("suspicious_logins")
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user