groupdate_test.rb
6.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
require "bundler/setup"
Bundler.require(:default)
require "minitest/autorun"
require "minitest/pride"
require "logger"
# for debugging
# ActiveRecord::Base.logger = Logger.new(STDOUT)
# rails does this in activerecord/lib/active_record/railtie.rb
ActiveRecord::Base.default_timezone = :utc
ActiveRecord::Base.time_zone_aware_attributes = true
class User < ActiveRecord::Base
end
# migrations
%w(postgresql mysql2).each do |adapter|
ActiveRecord::Base.establish_connection :adapter => adapter, :database => "groupdate_test", :username => adapter == "mysql2" ? "root" : nil
unless ActiveRecord::Base.connection.table_exists? "users"
ActiveRecord::Migration.create_table :users do |t|
t.string :name
t.integer :score
t.timestamps
end
end
end
describe Groupdate do
%w(postgresql mysql2).each do |adapter|
describe adapter do
before do
User.establish_connection :adapter => adapter, :database => "groupdate_test", :username => adapter == "mysql2" ? "root" : nil
User.delete_all
end
it "works!" do
[
{:name => "Andrew", :score => 1, :created_at => Time.parse("2013-04-01 00:00:00 UTC")},
{:name => "Jordan", :score => 2, :created_at => Time.parse("2013-04-01 00:00:00 UTC")},
{:name => "Nick", :score => 3, :created_at => Time.parse("2013-04-02 00:00:00 UTC")}
].each{|u| User.create!(u) }
assert_equal(
ordered_hash({
time_key("2013-04-01 00:00:00 UTC") => 1,
time_key("2013-04-02 00:00:00 UTC") => 1
}),
User.where("score > 1").group_by_day(:created_at).count
)
end
it "doesn't throw exception with order" do
assert_equal({}, User.group_by_day(:created_at).order("day desc").limit(20).count)
assert_equal({}, User.group_by_week(:created_at).order("week asc").count)
assert_equal({}, User.group_by_hour_of_day(:created_at).order("hour_of_day desc").count)
end
it "allows for table name" do
assert_equal({}, User.group_by_day("users.created_at").count)
end
it "group_by_second" do
assert_group :second, "2013-04-01 00:00:01 UTC", "2013-04-01 00:00:01 UTC"
end
it "group_by_minute" do
assert_group :minute, "2013-04-01 00:01:01 UTC", "2013-04-01 00:01:00 UTC"
end
it "group_by_hour" do
assert_group :hour, "2013-04-01 01:01:01 UTC", "2013-04-01 01:00:00 UTC"
end
it "group_by_day" do
assert_group :day, "2013-04-01 01:01:01 UTC", "2013-04-01 00:00:00 UTC"
end
it "group_by_day with time zone" do
assert_group_tz :day, "2013-04-01 01:01:01 UTC", "2013-03-31 07:00:00 UTC"
end
it "group_by_week" do
assert_group :week, "2013-03-17 01:01:01 UTC", "2013-03-17 00:00:00 UTC"
end
it "group_by_week with time zone" do # day of DST
assert_group_tz :week, "2013-03-17 01:01:01 UTC", "2013-03-10 08:00:00 UTC"
end
it "group_by_month" do
assert_group :month, "2013-04-01 01:01:01 UTC", "2013-04-01 00:00:00 UTC"
end
it "group_by_month with time zone" do
assert_group_tz :month, "2013-04-01 01:01:01 UTC", "2013-03-01 08:00:00 UTC"
end
it "group_by_year" do
assert_group :year, "2013-01-01 01:01:01 UTC", "2013-01-01 00:00:00 UTC"
end
it "group_by_year with time zone" do
assert_group_tz :year, "2013-01-01 01:01:01 UTC", "2012-01-01 08:00:00 UTC"
end
it "group_by_hour_of_day" do
assert_group_number :hour_of_day, "2013-01-01 11:00:00 UTC", 11
end
it "group_by_hour_of_day with time zone" do
assert_group_number_tz :hour_of_day, "2013-01-01 11:00:00 UTC", 3
end
it "group_by_day_of_week" do
assert_group_number :day_of_week, "2013-03-03 00:00:00 UTC", 0
end
it "group_by_day_of_week with time zone" do
assert_group_number_tz :day_of_week, "2013-03-03 00:00:00 UTC", 6
end
describe "returns zeros" do
it "group_by_day" do
create_user "2013-05-01 20:00:00 UTC"
expected = {
time_key("2013-04-30 00:00:00 UTC") => 0,
time_key("2013-05-01 00:00:00 UTC") => 1,
time_key("2013-05-02 00:00:00 UTC") => 0
}
assert_equal(expected, User.group_by_day(:created_at, Time.zone, Time.parse("2013-04-30 00:00:00 UTC")..Time.parse("2013-05-02 00:00:00 UTC")).count(:created_at))
end
it "group_by_day_of_week" do
create_user "2013-05-01 00:00:00 UTC"
expected = {}
7.times do |n|
expected[number_key(n)] = 0
end
expected[number_key(3)] = 1
assert_equal(expected, User.group_by_day_of_week(:created_at, Time.zone, true).count(:created_at))
end
it "group_by_hour_of_day" do
create_user "2013-05-01 20:00:00 UTC"
expected = {}
24.times do |n|
expected[number_key(n)] = 0
end
expected[number_key(20)] = 1
assert_equal(expected, User.group_by_hour_of_day(:created_at, Time.zone, true).count(:created_at))
end
end
end
end
# helper methods
def assert_group(method, created_at, key, time_zone = nil)
create_user created_at
assert_equal(ordered_hash({time_key(key) => 1}), User.send(:"group_by_#{method}", :created_at, time_zone).count)
end
def assert_group_tz(method, created_at, key)
assert_group method, created_at, key, "Pacific Time (US & Canada)"
end
def assert_group_number(method, created_at, key, time_zone = nil)
create_user created_at
assert_equal(ordered_hash({number_key(key) => 1}), User.send(:"group_by_#{method}", :created_at, time_zone).count)
end
def assert_group_number_tz(method, created_at, key)
assert_group_number method, created_at, key, "Pacific Time (US & Canada)"
end
def time_key(key)
if RUBY_PLATFORM == "java"
User.connection.adapter_name == "PostgreSQL" ? Time.parse(key).strftime("%Y-%m-%d %H:%M:%S%z")[0..-3] : Time.parse(key).strftime("%Y-%m-%d %H:%M:%S").gsub(/ 00\:00\:00\z/, "")
else
User.connection.adapter_name == "PostgreSQL" && ActiveRecord::VERSION::MAJOR == 3 ? Time.parse(key).strftime("%Y-%m-%d %H:%M:%S+00") : Time.parse(key)
end
end
def number_key(key)
if RUBY_PLATFORM == "java"
User.connection.adapter_name == "PostgreSQL" ? key.to_f : key
else
User.connection.adapter_name == "PostgreSQL" ? (ActiveRecord::VERSION::MAJOR == 3 ? key.to_s : key.to_f) : key
end
end
def ordered_hash(hash)
RUBY_VERSION =~ /1\.8/ ? hash.inject(ActiveSupport::OrderedHash.new){|h, (k, v)| h[k] = v; h } : hash
end
def create_user(created_at)
User.create!(:name => "Andrew", :score => 1, :created_at => Time.parse(created_at))
end
end