HDFS-11272. Refine the assert messages in TestFSDirAttrOp. Contributed by Jimmy Xiang.
(cherry picked from commit ea547529cb
)
This commit is contained in:
parent
1b39268233
commit
cd331556f6
|
@ -53,25 +53,25 @@ public class TestFSDirAttrOp {
|
||||||
@Test
|
@Test
|
||||||
public void testUnprotectedSetTimes() throws Exception {
|
public void testUnprotectedSetTimes() throws Exception {
|
||||||
// atime < access time + precision
|
// atime < access time + precision
|
||||||
assertFalse("SetTimes should not update access time"
|
assertFalse("SetTimes should not update access time "
|
||||||
+ "because it's within the last precision interval",
|
+ "because it's within the last precision interval",
|
||||||
unprotectedSetTimes(100, 0, 1000, -1, false));
|
unprotectedSetTimes(100, 0, 1000, -1, false));
|
||||||
|
|
||||||
// atime = access time + precision
|
// atime = access time + precision
|
||||||
assertFalse("SetTimes should not update access time"
|
assertFalse("SetTimes should not update access time "
|
||||||
+ "because it's within the last precision interval",
|
+ "because it's within the last precision interval",
|
||||||
unprotectedSetTimes(1000, 0, 1000, -1, false));
|
unprotectedSetTimes(1000, 0, 1000, -1, false));
|
||||||
|
|
||||||
// atime > access time + precision
|
// atime > access time + precision
|
||||||
assertTrue("SetTimes should store access time",
|
assertTrue("SetTimes should update access time",
|
||||||
unprotectedSetTimes(1011, 10, 1000, -1, false));
|
unprotectedSetTimes(1011, 10, 1000, -1, false));
|
||||||
|
|
||||||
// atime < access time + precision, but force is set
|
// atime < access time + precision, but force is set
|
||||||
assertTrue("SetTimes should store access time",
|
assertTrue("SetTimes should update access time",
|
||||||
unprotectedSetTimes(100, 0, 1000, -1, true));
|
unprotectedSetTimes(100, 0, 1000, -1, true));
|
||||||
|
|
||||||
// atime < access time + precision, but mtime is set
|
// atime < access time + precision, but mtime is set
|
||||||
assertTrue("SetTimes should store access time",
|
assertTrue("SetTimes should update access time",
|
||||||
unprotectedSetTimes(100, 0, 1000, 1, false));
|
unprotectedSetTimes(100, 0, 1000, 1, false));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue