@@ -11,21 +11,21 @@ class EntrySizeEstimateTest < ActiveSupport::TestCase
11
11
test "gets exact estimate when samples sizes are big enough" do
12
12
write_entries ( value_lengths : [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 ] )
13
13
14
- assert_equal 415 , estimate ( samples : 12 )
15
- assert_equal 415 , estimate ( samples : 10 )
16
- assert_equal 456 , estimate ( samples : 6 )
17
- assert_equal 457 , estimate ( samples : 5 )
14
+ assert_equal 1535 , estimate ( samples : 12 )
15
+ assert_equal 1535 , estimate ( samples : 10 )
16
+ assert_equal 1688 , estimate ( samples : 6 )
17
+ assert_equal 1689 , estimate ( samples : 5 )
18
18
end
19
19
20
20
test "test larger sample estimates" do
21
21
values_lengths = with_fixed_srand ( 1 ) { 1000 . times . map { ( rand **2 * 1000 ) . to_i } }
22
22
write_entries ( value_lengths : values_lengths )
23
23
24
- assert_equal 369257 , estimate ( samples : 1000 )
25
- assert_equal 369550 , estimate ( samples : 500 )
26
- with_fixed_srand ( 1 ) { assert_equal 383576 , estimate ( samples : 100 ) }
27
- with_fixed_srand ( 1 ) { assert_equal 357109 , estimate ( samples : 50 ) }
28
- with_fixed_srand ( 1 ) { assert_equal 326614 , estimate ( samples : 10 ) }
24
+ assert_equal 481257 , estimate ( samples : 1000 )
25
+ assert_equal 481662 , estimate ( samples : 500 )
26
+ with_fixed_srand ( 1 ) { assert_equal 501624 , estimate ( samples : 100 ) }
27
+ with_fixed_srand ( 1 ) { assert_equal 477621 , estimate ( samples : 50 ) }
28
+ with_fixed_srand ( 1 ) { assert_equal 471878 , estimate ( samples : 10 ) }
29
29
end
30
30
31
31
test "test with gaps in records estimates" do
@@ -34,12 +34,12 @@ class EntrySizeEstimateTest < ActiveSupport::TestCase
34
34
first_mod = Entry . first . id % 3
35
35
Entry . where ( "id % 3 = #{ first_mod } " ) . delete_all
36
36
37
- assert_equal 249940 , estimate ( samples : 1000 )
38
- assert_equal 250037 , estimate ( samples : 500 )
39
- with_fixed_srand ( 1 ) { assert_equal 249354 , estimate ( samples : 334 ) }
40
- with_fixed_srand ( 1 ) { assert_equal 267523 , estimate ( samples : 100 ) }
41
- with_fixed_srand ( 1 ) { assert_equal 257970 , estimate ( samples : 50 ) }
42
- with_fixed_srand ( 1 ) { assert_equal 203365 , estimate ( samples : 10 ) }
37
+ assert_equal 324532 , estimate ( samples : 1000 )
38
+ assert_equal 324741 , estimate ( samples : 500 )
39
+ with_fixed_srand ( 1 ) { assert_equal 323946 , estimate ( samples : 334 ) }
40
+ with_fixed_srand ( 1 ) { assert_equal 345103 , estimate ( samples : 100 ) }
41
+ with_fixed_srand ( 1 ) { assert_equal 335770 , estimate ( samples : 50 ) }
42
+ with_fixed_srand ( 1 ) { assert_equal 281944 , estimate ( samples : 10 ) }
43
43
end
44
44
45
45
test "test with more gaps in records estimates" do
@@ -48,12 +48,12 @@ class EntrySizeEstimateTest < ActiveSupport::TestCase
48
48
first_mod = Entry . first . id % 4
49
49
Entry . where ( "id % 4 != #{ first_mod } " ) . delete_all
50
50
51
- assert_equal 92304 , estimate ( samples : 1000 )
52
- assert_equal 92592 , estimate ( samples : 500 )
53
- with_fixed_srand ( 1 ) { assert_equal 92519 , estimate ( samples : 250 ) }
54
- with_fixed_srand ( 1 ) { assert_equal 95475 , estimate ( samples : 100 ) }
55
- with_fixed_srand ( 1 ) { assert_equal 101601 , estimate ( samples : 50 ) }
56
- with_fixed_srand ( 1 ) { assert_equal 13362 , estimate ( samples : 10 ) }
51
+ assert_equal 120304 , estimate ( samples : 1000 )
52
+ assert_equal 121488 , estimate ( samples : 500 )
53
+ with_fixed_srand ( 1 ) { assert_equal 121188 , estimate ( samples : 250 ) }
54
+ with_fixed_srand ( 1 ) { assert_equal 126768 , estimate ( samples : 100 ) }
55
+ with_fixed_srand ( 1 ) { assert_equal 132657 , estimate ( samples : 50 ) }
56
+ with_fixed_srand ( 1 ) { assert_equal 25537 , estimate ( samples : 10 ) }
57
57
end
58
58
59
59
test "overestimate when all samples sizes are the same" do
@@ -62,11 +62,11 @@ class EntrySizeEstimateTest < ActiveSupport::TestCase
62
62
# estimate in this case.
63
63
write_entries ( value_lengths : [ 1 ] * 1000 )
64
64
65
- assert_equal 37000 , estimate ( samples : 1000 )
66
- assert_equal 73963 , estimate ( samples : 999 )
67
- assert_equal 55500 , estimate ( samples : 500 )
68
- with_fixed_srand ( 1 ) { assert_equal 67648 , estimate ( samples : 6 ) }
69
- with_fixed_srand ( 1 ) { assert_equal 81178 , estimate ( samples : 5 ) }
65
+ assert_equal 149000 , estimate ( samples : 1000 )
66
+ assert_equal 297851 , estimate ( samples : 999 )
67
+ assert_equal 223500 , estimate ( samples : 500 )
68
+ with_fixed_srand ( 1 ) { assert_equal 272422 , estimate ( samples : 6 ) }
69
+ with_fixed_srand ( 1 ) { assert_equal 326906 , estimate ( samples : 5 ) }
70
70
end
71
71
72
72
private
0 commit comments