diff options
| author | Indrajith K L | 2022-12-03 17:00:20 +0530 | 
|---|---|---|
| committer | Indrajith K L | 2022-12-03 17:00:20 +0530 | 
| commit | f5c4671bfbad96bf346bd7e9a21fc4317b4959df (patch) | |
| tree | 2764fc62da58f2ba8da7ed341643fc359873142f /v_windows/v/old/vlib/time/misc | |
| download | cli-tools-windows-master.tar.gz cli-tools-windows-master.tar.bz2 cli-tools-windows-master.zip  | |
Diffstat (limited to 'v_windows/v/old/vlib/time/misc')
| -rw-r--r-- | v_windows/v/old/vlib/time/misc/misc.v | 13 | ||||
| -rw-r--r-- | v_windows/v/old/vlib/time/misc/misc_test.v | 17 | 
2 files changed, 30 insertions, 0 deletions
diff --git a/v_windows/v/old/vlib/time/misc/misc.v b/v_windows/v/old/vlib/time/misc/misc.v new file mode 100644 index 0000000..0ae7b94 --- /dev/null +++ b/v_windows/v/old/vlib/time/misc/misc.v @@ -0,0 +1,13 @@ +module misc + +import rand +import time + +const ( +	start_time_unix = time.now().unix // start_time_unix is set when the program is started. +) + +// random returns a random time struct in *the past*. +pub fn random() time.Time { +	return time.unix(int(rand.u64n(misc.start_time_unix))) +} diff --git a/v_windows/v/old/vlib/time/misc/misc_test.v b/v_windows/v/old/vlib/time/misc/misc_test.v new file mode 100644 index 0000000..9bcc8ad --- /dev/null +++ b/v_windows/v/old/vlib/time/misc/misc_test.v @@ -0,0 +1,17 @@ +import time.misc as tmisc +import rand + +fn test_random() { +	// guarantee CI test stability, by seeding the random number generator with a known seed +	rand.seed([u32(0), 0]) +	t1 := tmisc.random() +	t2 := tmisc.random() +	t3 := tmisc.random() +	t4 := tmisc.random() +	assert t1.unix != t2.unix +	assert t1.unix != t3.unix +	assert t1.unix != t4.unix +	assert t2.unix != t3.unix +	assert t2.unix != t4.unix +	assert t3.unix != t4.unix +}  | 
