titleFormat.js
5.43 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
describe('titleFormat', function() {
var SELECTOR = '.fc-toolbar h2';
beforeEach(function() {
affix('#cal');
});
describe('when default', function() {
var viewWithFormat = [
{ view: 'month', expected: 'June 2014' },
{ view: 'basicWeek', expected: /Jun 8 - 14,? 2014/ }, // moment changed LL defaults after 2.8
{ view: 'agendaWeek', expected: /Jun 8 - 14,? 2014/ }, // "
{ view: 'basicDay', expected: /June 12,? 2014/ }, // "
{ view: 'agendaDay', expected: /June 12,? 2014/ } // "
];
beforeEach(function() {
$('#cal').fullCalendar({
defaultDate: '2014-06-12',
titleRangeSeparator: ' - '
});
});
it('should have default values', function() {
var cal = $('#cal');
for (var i = 0; i < viewWithFormat.length; i++) {
var crtView = viewWithFormat[i];
cal.fullCalendar('changeView', crtView.view);
expect(cal.find(SELECTOR).text()).toMatch(crtView.expected);
};
});
});
describe('when set on a per-view basis', function() {
var viewWithFormat = [
{ view: 'month', expected: '2014, June' },
{ view: 'basicWeek', expected: '8 - 14 6 2014' },
{ view: 'agendaWeek', expected: '8 - 14, 6, 2014' },
{ view: 'basicDay', expected: 'Thursday June 12 2014' },
{ view: 'agendaDay', expected: 'Thursday, June, 12, 2014' }
];
beforeEach(function() {
$('#cal').fullCalendar({
defaultDate: '2014-06-12',
titleRangeSeparator: ' - ',
titleFormat: {
month: 'YYYY, MMMM',
basicWeek: 'D M YYYY',
agendaWeek: 'D, M, YYYY',
basicDay: 'dddd MMMM D YYYY',
agendaDay: 'dddd, MMMM, D, YYYY'
}
});
});
it('should have the correct values', function() {
var cal = $('#cal');
for (var i = 0; i < viewWithFormat.length; i++) {
var crtView = viewWithFormat[i];
cal.fullCalendar('changeView', crtView.view);
expect(cal.find(SELECTOR).text()).toBe(crtView.expected);
};
});
});
describe('when default and language is French', function() {
var viewWithFormat = [
{ view: 'month', expected: 'juin 2014' },
{ view: 'basicWeek', expected: '9 - 15 juin 2014' },
{ view: 'agendaWeek', expected: '9 - 15 juin 2014' },
{ view: 'basicDay', expected: '12 juin 2014' },
{ view: 'agendaDay', expected: '12 juin 2014' }
];
beforeEach(function() {
$('#cal').fullCalendar({
defaultDate: '2014-06-12',
titleRangeSeparator: ' - ',
lang: 'fr'
});
});
it('should have the translated dates', function() {
var cal = $('#cal');
for (var i = 0; i < viewWithFormat.length; i++) {
var crtView = viewWithFormat[i];
cal.fullCalendar('changeView', crtView.view);
expect(cal.find(SELECTOR).text()).toBe(crtView.expected);
};
});
});
describe('using custom views', function() {
it('multi-year default only displays year', function() {
$('#cal').fullCalendar({
views: {
multiYear: {
type: 'basic',
duration: { years: 2 }
}
},
defaultView: 'multiYear',
defaultDate: '2014-12-25',
titleRangeSeparator: ' - '
});
expect($('h2')).toHaveText('2014 - 2015');
});
it('multi-month default only displays month/year', function() {
$('#cal').fullCalendar({
views: {
multiMonth: {
type: 'basic',
duration: { months: 2 }
}
},
defaultView: 'multiMonth',
defaultDate: '2014-12-25',
titleRangeSeparator: ' - '
});
expect($('h2')).toHaveText('December 2014 - January 2015');
});
it('multi-week default displays short full date', function() {
$('#cal').fullCalendar({
views: {
multiWeek: {
type: 'basic',
duration: { weeks: 2 }
}
},
defaultView: 'multiWeek',
defaultDate: '2014-12-25',
titleRangeSeparator: ' - '
});
expect($('h2').text()).toMatch(/Dec 21\,? 2014 \- Jan 3\,? 2015/);
});
it('multi-day default displays short full date', function() {
$('#cal').fullCalendar({
views: {
multiDay: {
type: 'basic',
duration: { days: 2 }
}
},
defaultView: 'multiDay',
defaultDate: '2014-12-25',
titleRangeSeparator: ' - '
});
expect($('h2').text()).toMatch(/Dec 25 \- 26\,? 2014/);
});
});
});