Skip to content

Commit 9ba58b6

Browse files
committedJan 14, 2014
Add custom specs for Date (for missing rubyspec tests)
1 parent 41c13fd commit 9ba58b6

File tree

3 files changed

+150
-8
lines changed

3 files changed

+150
-8
lines changed
 

‎spec/opal/core/date_spec.rb

+115
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
require 'spec_helper'
2+
require 'date'
3+
4+
# rubyspec does not have specs for these listed methods
5+
describe Date do
6+
describe "#<" do
7+
it "is true when self is before other" do
8+
(Date.new(2013, 2, 4) < Date.new(2013, 2, 5)).should == true
9+
(Date.new(2013, 2, 4) < Date.new(2014, 7, 6)).should == true
10+
end
11+
12+
it "is false when self is not before other" do
13+
(Date.new(2013, 2, 4) < Date.new(2013, 2, 4)).should == false
14+
(Date.new(2014, 2, 4) < Date.new(2013, 7, 6)).should == false
15+
end
16+
end
17+
18+
describe '#<=' do
19+
it "is true when self is before or the same day as other" do
20+
(Date.new(2013, 4, 5) <= Date.new(2013, 4, 5)).should == true
21+
(Date.new(2013, 4, 5) <= Date.new(2013, 4, 9)).should == true
22+
end
23+
24+
it "is false when self is after other" do
25+
(Date.new(2013, 4, 5) <= Date.new(2013, 4, 2)).should == false
26+
(Date.new(2013, 4, 5) <= Date.new(2013, 2, 5)).should == false
27+
end
28+
end
29+
30+
describe "#==" do
31+
it "returns true if self is equal to other date" do
32+
(Date.new(2013, 9, 13) == Date.new(2013, 9, 13)).should == true
33+
end
34+
35+
it "returns false if self is not equal to other date" do
36+
(Date.new(2013, 10, 2) == Date.new(2013, 10, 11)).should == false
37+
end
38+
end
39+
40+
describe "#clone" do
41+
it "creates a copy of the current date" do
42+
orig = Date.new(2013, 10, 15)
43+
copy = orig.clone
44+
45+
orig.should == copy
46+
orig.object_id.should_not == copy.object_id
47+
end
48+
end
49+
50+
describe "#day" do
51+
it "returns the day of the date" do
52+
Date.new(2013, 2, 10).day.should == 10
53+
Date.new(2013, 2, 1).day.should == 1
54+
end
55+
end
56+
57+
describe "#month" do
58+
it "returns the month of the date" do
59+
Date.new(2013, 1, 23).month.should == 1
60+
Date.new(2013, 12, 2).month.should == 12
61+
end
62+
end
63+
64+
describe "#next" do
65+
it "returns the next date from self" do
66+
Date.new(2013, 4, 6).next.should == Date.new(2013, 4, 7)
67+
Date.new(2013, 6, 30).next.should == Date.new(2013, 7, 1)
68+
Date.new(2013, 12, 31).next.should == Date.new(2014, 1, 1)
69+
end
70+
end
71+
72+
describe "#next_month" do
73+
it "returns the date with the next calendar month to self" do
74+
Date.new(2013, 2, 5).next_month.should == Date.new(2013, 3, 5)
75+
Date.new(2013, 5, 31).next_month.should == Date.new(2013, 6, 30)
76+
Date.new(2013, 12, 5).next_month.should == Date.new(2014, 1, 5)
77+
end
78+
end
79+
80+
describe "#prev" do
81+
it "returns the previous date from self" do
82+
Date.new(2013, 3, 5).prev.should == Date.new(2013, 3, 4)
83+
Date.new(2013, 6, 1).prev.should == Date.new(2013, 5, 31)
84+
Date.new(2014, 1, 1).prev.should == Date.new(2013, 12, 31)
85+
end
86+
end
87+
88+
describe "#prev_month" do
89+
it "returns the date with the previous calendar month" do
90+
Date.new(2013, 2, 9).prev_month.should == Date.new(2013, 1, 9)
91+
Date.new(2013, 7, 31).prev_month.should == Date.new(2013, 6, 30)
92+
Date.new(2013, 1, 3).prev_month.should == Date.new(2012, 12, 3)
93+
end
94+
end
95+
96+
describe "#to_s" do
97+
it "returns an ISO 8601 representation" do
98+
Date.new(2013, 10, 15).to_s.should == "2013-10-15"
99+
Date.new(2013, 4, 9).to_s.should == "2013-04-09"
100+
end
101+
end
102+
103+
describe "#wday" do
104+
it "returns the day of the week" do
105+
Date.new(2001, 2, 3).wday.should == 6
106+
Date.new(2001, 2, 4).wday.should == 0
107+
end
108+
end
109+
110+
describe "#year" do
111+
it "returns the year as an integer" do
112+
Date.new(2013, 2, 9).year.should == 2013
113+
end
114+
end
115+
end

‎stdlib/date.rb

+25-8
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,13 @@ def next
114114
end
115115

116116
def next_month
117-
res = self.clone
118-
`res.date.add({months: 1})`
119-
res
117+
%x{
118+
var result = #{clone}, date = result.date, cur = date.getDate();
119+
date.setDate(1);
120+
date.setMonth(date.getMonth() + 1);
121+
date.setDate(Math.min(cur, days_in_month(date.getFullYear(), date.getMonth())));
122+
return result;
123+
}
120124
end
121125

122126
def prev
@@ -126,9 +130,13 @@ def prev
126130
end
127131

128132
def prev_month
129-
res = self.clone
130-
`res.date.add({months: -1})`
131-
res
133+
%x{
134+
var result = #{clone}, date = result.date, cur = date.getDate();
135+
date.setDate(1);
136+
date.setMonth(date.getMonth() - 1);
137+
date.setDate(Math.min(cur, days_in_month(date.getFullYear(), date.getMonth())));
138+
return result;
139+
}
132140
end
133141

134142
def strftime(format = '')
@@ -137,8 +145,10 @@ def strftime(format = '')
137145

138146
def to_s
139147
%x{
140-
var date = #@date;
141-
return date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate();
148+
var d = #@date, year = d.getFullYear(), month = d.getMonth() + 1, day = d.getDate();
149+
if (month < 10) { month = '0' + month; }
150+
if (day < 10) { day = '0' + day; }
151+
return year + '-' + month + '-' + day;
142152
}
143153
end
144154

@@ -157,4 +167,11 @@ def wday
157167
def year
158168
`#@date.getFullYear()`
159169
end
170+
171+
%x{
172+
function days_in_month(year, month) {
173+
var leap = ((year % 4 === 0 && year % 100 !== 0) || year % 400 === 0);
174+
return [31, (leap ? 29 : 28), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][month]
175+
}
176+
}
160177
end

‎stdlib/json.rb

+10
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,13 @@ def to_json
161161
strftime("%FT%T%z").to_json
162162
end
163163
end
164+
165+
class Date
166+
def to_json
167+
to_s.to_json
168+
end
169+
170+
def as_json
171+
to_s
172+
end
173+
end

0 commit comments

Comments
 (0)
Please sign in to comment.