rails--rails/activejob/test
Will Jessop 171e788ccd Fix race condition testing for job execution order
On most filesystems file ctime is limited to 1 second granularity, which means that on
faster computers multiple simple jobs (for instance dummy TestJob) can finish within the
same second.

The execution order test in ActiveJob integration tests relies on multiple TestJobs
writing files then comparing the ctime. As a result integration tests would sometimes
fail as the ctime of the files written by these TestJobs could have coincidental ctimes
making the comparison for job order fail.

This commit adds a far more precise execution time (to the extent that the Ruby Time
class allows) to the file created by TestJob, and updates the execution order assertion
to use it, removing the race condition.
2015-11-23 14:24:49 +00:00
..
adapters Require only necessary concurrent-ruby classes. 2015-11-04 21:12:28 -05:00
cases Added missing specs for not modifying queues when using AJ test helpers 2015-10-07 20:02:15 +02:00
integration Fix race condition testing for job execution order 2015-11-23 14:24:49 +00:00
jobs Deprecate exception#original_exception in favor of exception#cause 2015-11-03 06:54:34 -08:00
models [ActiveJob] raise DeserializationError when got an error deserializing 2014-08-17 23:10:45 +00:00
support Fix race condition testing for job execution order 2015-11-23 14:24:49 +00:00
helper.rb Silence logging in Active Job unit tests 2015-09-21 14:02:41 +01:00