]> git.ipfire.org Git - thirdparty/moment.git/commitdiff
gl week tests
authorTim Wood <washwithcare@gmail.com>
Thu, 8 Nov 2012 20:52:01 +0000 (12:52 -0800)
committerTim Wood <washwithcare@gmail.com>
Thu, 8 Nov 2012 20:52:01 +0000 (12:52 -0800)
lang/gl.js
test/lang/gl.js

index 51c8569fb8642168a2681e5e1dc0559490e2ff72..91e237e833c4eecd805075befeab74e8ad14d680 100644 (file)
             },
             ordinal : function (number) {
                 return 'º';
+            },
+            week : {
+                dow : 1, // Monday is the first day of the week.
+                doy : 7  // The week that contains Jan 1st is the first week of the year.
             }
         };
 
index a4d34b49021c1df995943207d7144a97133606e2..6485fb34c111f21d29278c44f7cceee7dd1a7c6a 100644 (file)
@@ -6,11 +6,21 @@ var moment = require("../../moment");
      *************************************************/
 
 exports["lang:gl"] = {
+    setUp : function (cb) {
+        moment.lang('gl');
+        cb();
+    },
+
+    tearDown : function (cb) {
+        moment.lang('en');
+        cb();
+    },
+
     "parse" : function(test) {
         test.expect(96);
-        moment.lang('gl');
+
         var tests = "Xaneiro Xan._Febreiro Feb._Marzo Mar._Abril Abr._Maio Mai._Xuño Xuñ._Xullo Xul._Agosto Ago._Setembro Set._Octubro Out._Novembro Nov._Decembro Dec.".split("_");
-    
+
         var i;
         function equalTest(input, mmm, i) {
             test.equal(moment(input, mmm).month(), i, input + ' should be month ' + (i + 1));
@@ -31,7 +41,7 @@ exports["lang:gl"] = {
 
     "format ordinal" : function(test) {
         test.expect(31);
-        moment.lang('es');
+
         test.equal(moment([2011, 0, 1]).format('DDDo'), '1º', '1º');
         test.equal(moment([2011, 0, 2]).format('DDDo'), '2º', '2º');
         test.equal(moment([2011, 0, 3]).format('DDDo'), '3º', '3º');
@@ -42,7 +52,7 @@ exports["lang:gl"] = {
         test.equal(moment([2011, 0, 8]).format('DDDo'), '8º', '8º');
         test.equal(moment([2011, 0, 9]).format('DDDo'), '9º', '9º');
         test.equal(moment([2011, 0, 10]).format('DDDo'), '10º', '10º');
-    
+
         test.equal(moment([2011, 0, 11]).format('DDDo'), '11º', '11º');
         test.equal(moment([2011, 0, 12]).format('DDDo'), '12º', '12º');
         test.equal(moment([2011, 0, 13]).format('DDDo'), '13º', '13º');
@@ -53,7 +63,7 @@ exports["lang:gl"] = {
         test.equal(moment([2011, 0, 18]).format('DDDo'), '18º', '18º');
         test.equal(moment([2011, 0, 19]).format('DDDo'), '19º', '19º');
         test.equal(moment([2011, 0, 20]).format('DDDo'), '20º', '20º');
-    
+
         test.equal(moment([2011, 0, 21]).format('DDDo'), '21º', '21º');
         test.equal(moment([2011, 0, 22]).format('DDDo'), '22º', '22º');
         test.equal(moment([2011, 0, 23]).format('DDDo'), '23º', '23º');
@@ -64,14 +74,14 @@ exports["lang:gl"] = {
         test.equal(moment([2011, 0, 28]).format('DDDo'), '28º', '28º');
         test.equal(moment([2011, 0, 29]).format('DDDo'), '29º', '29º');
         test.equal(moment([2011, 0, 30]).format('DDDo'), '30º', '30º');
-    
+
         test.equal(moment([2011, 0, 31]).format('DDDo'), '31º', '31º');
         test.done();
     },
 
     "format month" : function(test) {
         test.expect(12);
-        moment.lang('gl');
+
         var expected = "Xaneiro Xan._Febreiro Feb._Marzo Mar._Abril Abr._Maio Mai._Xuño Xuñ._Xullo Xul._Agosto Ago._Setembro Set._Octubro Out._Novembro Nov._Decembro Dec.".split("_");
         var i;
         for (i = 0; i < expected.length; i++) {
@@ -82,9 +92,9 @@ exports["lang:gl"] = {
 
     "format week" : function(test) {
         test.expect(7);
-        moment.lang('gl');
+
         var expected = "Domingo Dom. Do_Luns Lun. Lu_Martes Mar. Ma_Mércores Mér. Mé_Xoves Xov. Xo_Venres Ven. Ve_Sábado Sáb. Sá".split("_");
-    
+
         var i;
         for (i = 0; i < expected.length; i++) {
             test.equal(moment([2011, 0, 2 + i]).format('dddd ddd dd'), expected[i], expected[i]);
@@ -94,9 +104,9 @@ exports["lang:gl"] = {
 
     "from" : function(test) {
         test.expect(30);
-        moment.lang('gl');
+
         var start = moment([2007, 1, 28]);
-    
+
         test.equal(start.from(moment([2007, 1, 28]).add({s:44}), true),  "uns segundo", "44 seconds = a few seconds");
         test.equal(start.from(moment([2007, 1, 28]).add({s:45}), true),  "un minuto",      "45 seconds = a minute");
         test.equal(start.from(moment([2007, 1, 28]).add({s:89}), true),  "un minuto",      "89 seconds = a minute");
@@ -132,7 +142,7 @@ exports["lang:gl"] = {
 
     "suffix" : function(test) {
         test.expect(2);
-        moment.lang('gl');
+
         test.equal(moment(30000).from(0), "en uns segundo",  "prefix");
         test.equal(moment(0).from(30000), "fai uns segundo", "suffix");
         test.done();
@@ -140,14 +150,12 @@ exports["lang:gl"] = {
 
     "now from now" : function(test) {
         test.expect(1);
-        moment.lang('gl');
         test.equal(moment().fromNow(), "fai uns segundo",  "now from now should display as in the past");
         test.done();
     },
 
     "fromNow" : function(test) {
         test.expect(2);
-        moment.lang('gl');
         test.equal(moment().add({s:30}).fromNow(), "en uns segundo", "en unos segundos");
         test.equal(moment().add({d:5}).fromNow(), "en 5 días", "en 5 días");
         test.done();
@@ -155,10 +163,9 @@ exports["lang:gl"] = {
 
     "calendar day" : function(test) {
         test.expect(7);
-        moment.lang('gl');
-    
+
         var a = moment().hours(2).minutes(0).seconds(0);
-    
+
         test.equal(moment(a).calendar(),                         "hoxe ás 2:00",     "today at the same time");
         test.equal(moment(a).add({ m: 25 }).calendar(),          "hoxe ás 2:25",     "Now plus 25 min");
         test.equal(moment(a).add({ h: 1 }).calendar(),           "hoxe ás 3:00",     "Now plus 1 hour");
@@ -171,11 +178,10 @@ exports["lang:gl"] = {
 
     "calendar next week" : function(test) {
         test.expect(15);
-        moment.lang('gl');
-    
+
         var i;
         var m;
-    
+
         for (i = 2; i < 7; i++) {
             m = moment().add({ d: i });
             test.equal(m.calendar(),       m.format('dddd [' + ((m.hours() !== 1) ? 'ás' : 'a') + '] LT'),  "Today + " + i + " days current time");
@@ -189,8 +195,10 @@ exports["lang:gl"] = {
 
     "calendar last week" : function(test) {
         test.expect(15);
-        moment.lang('gl');
-    
+
+        var i;
+        var m;
+
         for (i = 2; i < 7; i++) {
             m = moment().subtract({ d: i });
             test.equal(m.calendar(),       m.format('[o] dddd [pasado ' + ((m.hours() !== 1) ? 'ás' : 'a') + '] LT'),  "Today - " + i + " days current time");
@@ -204,28 +212,130 @@ exports["lang:gl"] = {
 
     "calendar all else" : function(test) {
         test.expect(4);
-        moment.lang('gl');
+
         var weeksAgo = moment().subtract({ w: 1 });
         var weeksFromNow = moment().add({ w: 1 });
-    
+
         test.equal(weeksAgo.calendar(),       weeksAgo.format('L'),  "1 week ago");
         test.equal(weeksFromNow.calendar(),   weeksFromNow.format('L'),  "in 1 week");
-    
+
         weeksAgo = moment().subtract({ w: 2 });
         weeksFromNow = moment().add({ w: 2 });
-    
+
         test.equal(weeksAgo.calendar(),       weeksAgo.format('L'),  "2 weeks ago");
         test.equal(weeksFromNow.calendar(),   weeksFromNow.format('L'),  "in 2 weeks");
-    test.done();
+        test.done();
     },
 
     "regression tests" : function(test) {
         test.expect(1);
-        moment.lang('gl');
 
         var lastWeek = moment().subtract({ d: 4 }).hours(1);
         test.equal(lastWeek.calendar(), lastWeek.format('[o] dddd [pasado a] LT'), "1 o'clock bug");
-        
+
+        test.done();
+    },
+
+    // Monday is the first day of the week.
+    // The week that contains Jan 1st is the first week of the year.
+
+    "weeks year starting sunday" : function(test) {
+        test.expect(5);
+
+        test.equal(moment([2011, 11, 26]).week(), 1, "Dec 26 2011 should be week 1");
+        test.equal(moment([2012,  0,  1]).week(), 1, "Jan  1 2012 should be week 1");
+        test.equal(moment([2012,  0,  2]).week(), 2, "Jan  2 2012 should be week 2");
+        test.equal(moment([2012,  0,  8]).week(), 2, "Jan  8 2012 should be week 2");
+        test.equal(moment([2012,  0,  9]).week(), 3, "Jan  9 2012 should be week 3");
+
+        test.done();
+    },
+
+    "weeks year starting monday" : function(test) {
+        test.expect(5);
+
+        test.equal(moment([2007, 0, 1]).week(),  1, "Jan  1 2007 should be week 1");
+        test.equal(moment([2007, 0, 7]).week(),  1, "Jan  7 2007 should be week 1");
+        test.equal(moment([2007, 0, 8]).week(),  2, "Jan  8 2007 should be week 2");
+        test.equal(moment([2007, 0, 14]).week(), 2, "Jan 14 2007 should be week 2");
+        test.equal(moment([2007, 0, 15]).week(), 3, "Jan 15 2007 should be week 3");
+
+        test.done();
+    },
+
+    "weeks year starting tuesday" : function(test) {
+        test.expect(6);
+
+        test.equal(moment([2007, 11, 31]).week(), 1, "Dec 31 2007 should be week 1");
+        test.equal(moment([2008,  0,  1]).week(), 1, "Jan  1 2008 should be week 1");
+        test.equal(moment([2008,  0,  6]).week(), 1, "Jan  6 2008 should be week 1");
+        test.equal(moment([2008,  0,  7]).week(), 2, "Jan  7 2008 should be week 2");
+        test.equal(moment([2008,  0, 13]).week(), 2, "Jan 13 2008 should be week 2");
+        test.equal(moment([2008,  0, 14]).week(), 3, "Jan 14 2008 should be week 3");
+
+        test.done();
+    },
+
+    "weeks year starting wednesday" : function(test) {
+        test.expect(6);
+
+        test.equal(moment([2002, 11, 30]).week(), 1, "Dec 30 2002 should be week 1");
+        test.equal(moment([2003,  0,  1]).week(), 1, "Jan  1 2003 should be week 1");
+        test.equal(moment([2003,  0,  5]).week(), 1, "Jan  5 2003 should be week 1");
+        test.equal(moment([2003,  0,  6]).week(), 2, "Jan  6 2003 should be week 2");
+        test.equal(moment([2003,  0, 12]).week(), 2, "Jan 12 2003 should be week 2");
+        test.equal(moment([2003,  0, 13]).week(), 3, "Jan 13 2003 should be week 3");
+
+        test.done();
+    },
+
+    "weeks year starting thursday" : function(test) {
+        test.expect(6);
+
+        test.equal(moment([2008, 11, 29]).week(), 1, "Dec 29 2008 should be week 1");
+        test.equal(moment([2009,  0,  1]).week(), 1, "Jan  1 2009 should be week 1");
+        test.equal(moment([2009,  0,  4]).week(), 1, "Jan  4 2009 should be week 1");
+        test.equal(moment([2009,  0,  5]).week(), 2, "Jan  5 2009 should be week 2");
+        test.equal(moment([2009,  0, 11]).week(), 2, "Jan 11 2009 should be week 2");
+        test.equal(moment([2009,  0, 12]).week(), 3, "Jan 12 2009 should be week 3");
+
+        test.done();
+    },
+
+    "weeks year starting friday" : function(test) {
+        test.expect(6);
+
+        test.equal(moment([2009, 11, 28]).week(), 1, "Dec 28 2009 should be week 1");
+        test.equal(moment([2010,  0,  1]).week(), 1, "Jan  1 2010 should be week 1");
+        test.equal(moment([2010,  0,  3]).week(), 1, "Jan  3 2010 should be week 1");
+        test.equal(moment([2010,  0,  4]).week(), 2, "Jan  4 2010 should be week 2");
+        test.equal(moment([2010,  0, 10]).week(), 2, "Jan 10 2010 should be week 2");
+        test.equal(moment([2010,  0, 11]).week(), 3, "Jan 11 2010 should be week 3");
+
+        test.done();
+    },
+
+    "weeks year starting saturday" : function(test) {
+        test.expect(6);
+
+        test.equal(moment([2010, 11, 27]).week(), 1, "Dec 27 2010 should be week 1");
+        test.equal(moment([2011,  0,  1]).week(), 1, "Jan  1 2011 should be week 1");
+        test.equal(moment([2011,  0,  2]).week(), 1, "Jan  2 2011 should be week 1");
+        test.equal(moment([2011,  0,  3]).week(), 2, "Jan  3 2011 should be week 2");
+        test.equal(moment([2011,  0,  9]).week(), 2, "Jan  9 2011 should be week 2");
+        test.equal(moment([2011,  0, 10]).week(), 3, "Jan 10 2011 should be week 3");
+
+        test.done();
+    },
+
+    "weeks year starting sunday formatted" : function(test) {
+        test.expect(5);
+
+        test.equal(moment([2011, 11, 26]).format('w ww wo'), '1 01 1º', "Dec 26 2011 should be week 1");
+        test.equal(moment([2012,  0,  1]).format('w ww wo'), '1 01 1º', "Jan  1 2012 should be week 1");
+        test.equal(moment([2012,  0,  2]).format('w ww wo'), '2 02 2º', "Jan  2 2012 should be week 2");
+        test.equal(moment([2012,  0,  8]).format('w ww wo'), '2 02 2º', "Jan  8 2012 should be week 2");
+        test.equal(moment([2012,  0,  9]).format('w ww wo'), '3 03 3º', "Jan  9 2012 should be week 3");
 
         test.done();
     }