d6a66d79ba77ac02da5d178fbe63b6c54bc6246d
[mono.git] / mcs / class / System.Core / Test / System / TimeZoneInfoTest.cs
1 /*
2  * TimeZoneInfo.Tests
3  *
4  * Author(s)
5  *      Stephane Delcroix <stephane@delcroix.org>
6  *
7  * Copyright 2011 Xamarin Inc.
8  *
9  * Permission is hereby granted, free of charge, to any person obtaining
10  * a copy of this software and associated documentation files (the
11  * "Software"), to deal in the Software without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  * 
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  * 
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27  */
28
29 using System;
30 using System.IO;
31 using System.Runtime.Serialization.Formatters.Binary;
32 using System.Collections;
33
34 using NUnit.Framework;
35 #if NET_2_0
36 namespace MonoTests.System
37 {
38         public class TimeZoneInfoTest
39         {
40                 [TestFixture]
41                 public class PropertiesTests
42                 {
43                         [Test]
44                         public void GetLocal ()
45                         {
46                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
47                                         Assert.Ignore ("Not running on Unix.");
48                                 TimeZoneInfo local = TimeZoneInfo.Local;
49                                 Assert.IsNotNull (local);
50                                 Assert.IsTrue (true);
51                         }
52                 }
53
54                 [TestFixture]
55                 public class CreateCustomTimezoneTests
56                 {
57                         [Test]
58                         [ExpectedException (typeof (ArgumentNullException))]
59                         public void IdIsNullException ()
60                         {
61                                 TimeZoneInfo.CreateCustomTimeZone (null, new TimeSpan (0), null, null); 
62                         }
63                 
64                         [Test]
65                         [ExpectedException (typeof (ArgumentException))]
66                         public void IdIsEmptyString ()
67                         {
68                                 TimeZoneInfo.CreateCustomTimeZone ("", new TimeSpan (0), null, null);   
69                         }
70                 
71                         [Test]
72                         [ExpectedException (typeof (ArgumentException))]
73                         public void OffsetIsNotMinutes ()
74                         {
75                                 TimeZoneInfo.CreateCustomTimeZone ("mytimezone", new TimeSpan (0, 0, 55), null, null);  
76                         }
77                 
78                         [Test]
79                         [ExpectedException (typeof (ArgumentOutOfRangeException))]
80                         public void OffsetTooBig ()
81                         {
82                                 TimeZoneInfo.CreateCustomTimeZone ("mytimezone", new TimeSpan (14, 1, 0), null, null);
83                         }
84                 
85                         [Test]
86                         [ExpectedException (typeof (ArgumentOutOfRangeException))]
87                         public void OffsetTooSmall ()
88                         {
89                                 TimeZoneInfo.CreateCustomTimeZone ("mytimezone", - new TimeSpan (14, 1, 0), null, null);
90                         }
91                 
92                 #if STRICT
93                         [Test]
94                         [ExpectedException (typeof (ArgumentException))]
95                         public void IdLongerThan32 ()
96                         {
97                                 TimeZoneInfo.CreateCustomTimeZone ("12345678901234567890123456789012345", new TimeSpan (0), null, null);        
98                         }       
99                 #endif
100                 
101                         [Test]
102                         [ExpectedException (typeof (InvalidTimeZoneException))]
103                         public void AdjustmentRulesOverlap ()
104                         {
105                                 TimeZoneInfo.TransitionTime s1 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 3, 2, DayOfWeek.Sunday);
106                                 TimeZoneInfo.TransitionTime e1 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 10, 2, DayOfWeek.Sunday);
107                                 TimeZoneInfo.AdjustmentRule r1 = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (new DateTime (2000,1,1), new DateTime (2005,1,1), new TimeSpan (1,0,0), s1, e1);
108                                 TimeZoneInfo.TransitionTime s2 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 2, 2, DayOfWeek.Sunday);
109                                 TimeZoneInfo.TransitionTime e2 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 11, 2, DayOfWeek.Sunday);
110                                 TimeZoneInfo.AdjustmentRule r2 = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (new DateTime (2004,1,1), new DateTime (2007,1,1), new TimeSpan (1,0,0), s2, e2);
111                                 TimeZoneInfo.CreateCustomTimeZone ("mytimezone", new TimeSpan (6,0,0),null,null,null,new TimeZoneInfo.AdjustmentRule[] {r1, r2});
112                         }
113                 
114                         [Test]
115                         [ExpectedException (typeof (InvalidTimeZoneException))]
116                         public void RulesNotOrdered ()
117                         {
118                                 TimeZoneInfo.TransitionTime s1 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 3, 2, DayOfWeek.Sunday);
119                                 TimeZoneInfo.TransitionTime e1 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 10, 2, DayOfWeek.Sunday);
120                                 TimeZoneInfo.AdjustmentRule r1 = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (new DateTime (2000,1,1), new DateTime (2005,1,1), new TimeSpan (1,0,0), s1, e1);
121                                 TimeZoneInfo.TransitionTime s2 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 2, 2, DayOfWeek.Sunday);
122                                 TimeZoneInfo.TransitionTime e2 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 11, 2, DayOfWeek.Sunday);
123                                 TimeZoneInfo.AdjustmentRule r2 = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (new DateTime (2006,1,1), new DateTime (2007,1,1), new TimeSpan (1,0,0), s2, e2);
124                                 TimeZoneInfo.CreateCustomTimeZone ("mytimezone", new TimeSpan (6,0,0),null,null,null,new TimeZoneInfo.AdjustmentRule[] {r2, r1});
125                         }
126                 
127                         [Test]
128                         [ExpectedException (typeof (InvalidTimeZoneException))]
129                         public void OffsetOutOfRange ()
130                         {
131                                 TimeZoneInfo.TransitionTime startTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 3, 2, DayOfWeek.Sunday);
132                                 TimeZoneInfo.TransitionTime endTransition = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 10, 2, DayOfWeek.Sunday);
133                                 TimeZoneInfo.AdjustmentRule rule = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (new DateTime (2000,1,1), new DateTime (2005,1,1), new TimeSpan (3,0,0), startTransition, endTransition);
134                                 TimeZoneInfo.CreateCustomTimeZone ("mytimezone", new TimeSpan (12,0,0),null,null,null,new TimeZoneInfo.AdjustmentRule[] {rule});
135                         }
136                 
137                         [Test]
138                         [ExpectedException (typeof (InvalidTimeZoneException))]
139                         public void NullRule ()
140                         {
141                                 TimeZoneInfo.CreateCustomTimeZone ("mytimezone", new TimeSpan (12,0,0),null,null,null,new TimeZoneInfo.AdjustmentRule[] {null});
142                         }
143                 
144                         [Test]
145                         [ExpectedException (typeof (InvalidTimeZoneException))]
146                         public void MultiplesRulesForDate ()
147                         {
148                                 TimeZoneInfo.TransitionTime s1 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 3, 2, DayOfWeek.Sunday);
149                                 TimeZoneInfo.TransitionTime e1 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 10, 2, DayOfWeek.Sunday);
150                                 TimeZoneInfo.AdjustmentRule r1 = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (new DateTime (2000,1,1), new DateTime (2005,1,1), new TimeSpan (1,0,0), s1, e1);
151                                 TimeZoneInfo.TransitionTime s2 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 2, 2, DayOfWeek.Sunday);
152                                 TimeZoneInfo.TransitionTime e2 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 11, 2, DayOfWeek.Sunday);
153                                 TimeZoneInfo.AdjustmentRule r2 = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (new DateTime (2005,1,1), new DateTime (2007,1,1), new TimeSpan (1,0,0), s2, e2);
154                                 TimeZoneInfo.CreateCustomTimeZone ("mytimezone", new TimeSpan (6,0,0),null,null,null,new TimeZoneInfo.AdjustmentRule[] {r1, r2});
155                         }
156
157                         [Test]
158                         public void SupportsDaylightSavingTime_NonEmptyAdjustmentRule ()
159                         {
160                                 TimeZoneInfo.TransitionTime s1 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 3, 2, DayOfWeek.Sunday);
161                                 TimeZoneInfo.TransitionTime e1 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 10, 2, DayOfWeek.Sunday);
162                                 TimeZoneInfo.AdjustmentRule r1 = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (new DateTime (2000,1,1), new DateTime (2005,1,1), new TimeSpan (1,0,0), s1, e1);
163                                 TimeZoneInfo tz = TimeZoneInfo.CreateCustomTimeZone ("mytimezone", new TimeSpan (6,0,0),null,null,null,new TimeZoneInfo.AdjustmentRule[] {r1});
164                                 Assert.IsTrue (tz.SupportsDaylightSavingTime);
165                         }
166
167                         [Test]
168                         public void SupportsDaylightSavingTime_EmptyAdjustmentRule ()
169                         {
170                                 TimeZoneInfo tz = TimeZoneInfo.CreateCustomTimeZone ("mytimezone", new TimeSpan (6,0,0),null,null,null,null);
171                                 Assert.IsFalse (tz.SupportsDaylightSavingTime);
172                         }
173
174                         [Test]
175                         public void SupportsDaylightSavingTime_NonEmptyAdjustmentRule_DisableDaylightSavingTime ()
176                         {
177                                 TimeZoneInfo.TransitionTime s1 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 3, 2, DayOfWeek.Sunday);
178                                 TimeZoneInfo.TransitionTime e1 = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,4,0,0), 10, 2, DayOfWeek.Sunday);
179                                 TimeZoneInfo.AdjustmentRule r1 = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (new DateTime (2000,1,1), new DateTime (2005,1,1), new TimeSpan (1,0,0), s1, e1);
180                                 TimeZoneInfo tz = TimeZoneInfo.CreateCustomTimeZone ("mytimezone", new TimeSpan (6,0,0),null,null,null,new TimeZoneInfo.AdjustmentRule[] {r1}, true);
181                                 Assert.IsFalse (tz.SupportsDaylightSavingTime);
182                         }
183
184                         [Test]
185                         public void SupportsDaylightSavingTime_EmptyAdjustmentRule_DisableDaylightSavingTime ()
186                         {
187                                 TimeZoneInfo tz = TimeZoneInfo.CreateCustomTimeZone ("mytimezone", new TimeSpan (6,0,0),null,null,null,null,true);
188                                 Assert.IsFalse (tz.SupportsDaylightSavingTime);
189                         }
190                 }
191                 
192                 [TestFixture]
193                 public class IsDaylightSavingTimeTests
194                 {
195                         TimeZoneInfo london;
196                 
197                         [SetUp]
198                         public void CreateTimeZones ()
199                         {
200                                 TimeZoneInfo.TransitionTime start = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,1,0,0), 3, 5, DayOfWeek.Sunday);
201                                 TimeZoneInfo.TransitionTime end = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,2,0,0), 10, 5, DayOfWeek.Sunday);
202                                 TimeZoneInfo.AdjustmentRule rule = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (DateTime.MinValue.Date, DateTime.MaxValue.Date, new TimeSpan (1,0,0), start, end);
203                                 london = TimeZoneInfo.CreateCustomTimeZone ("Europe/London", new TimeSpan (0), "Europe/London", "British Standard Time", "British Summer Time", new TimeZoneInfo.AdjustmentRule [] {rule});
204                         }
205                 
206                         [Test]
207                         public void NoDSTInUTC ()
208                         {
209                                 DateTime june01 = new DateTime (2007, 06, 01);
210                                 Assert.IsFalse (TimeZoneInfo.Utc.IsDaylightSavingTime (june01));
211                         }
212                 
213                         [Test]
214                         public void DSTInLondon ()
215                         {
216                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
217                                         Assert.Ignore ("Not running on Unix.");
218                                 DateTime june01 = new DateTime (2007, 06, 01);
219                                 DateTime xmas = new DateTime (2007, 12, 25);
220                                 Assert.IsTrue (london.IsDaylightSavingTime (june01), "June 01 is DST in London");
221                                 Assert.IsFalse (london.IsDaylightSavingTime (xmas), "Xmas is not DST in London");
222                         }
223                 
224                         [Test]
225                         public void DSTTransisions ()
226                         {
227                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
228                                         Assert.Ignore ("Not running on Unix.");
229                                 DateTime beforeDST = new DateTime (2007, 03, 25, 0, 59, 59, DateTimeKind.Unspecified);
230                                 DateTime startDST = new DateTime (2007, 03, 25, 2, 0, 0, DateTimeKind.Unspecified);
231                                 DateTime endDST = new DateTime (2007, 10, 28, 1, 59, 59, DateTimeKind.Unspecified);
232                                 DateTime afterDST = new DateTime (2007, 10, 28, 2, 0, 0, DateTimeKind.Unspecified);
233                                 Assert.IsFalse (london.IsDaylightSavingTime (beforeDST), "Just before DST");
234                                 Assert.IsTrue (london.IsDaylightSavingTime (startDST), "the first seconds of DST");
235                                 Assert.IsTrue (london.IsDaylightSavingTime (endDST), "The last seconds of DST");
236                                 Assert.IsFalse (london.IsDaylightSavingTime (afterDST), "Just after DST");
237                         }
238                 
239                         [Test]
240                         public void DSTTransisionsUTC ()
241                         {
242                                 DateTime beforeDST = new DateTime (2007, 03, 25, 0, 59, 59, DateTimeKind.Utc);
243                                 DateTime startDST = new DateTime (2007, 03, 25, 1, 0, 0, DateTimeKind.Utc);
244                                 DateTime endDST = new DateTime (2007, 10, 28, 0, 59, 59, DateTimeKind.Utc);
245                                 DateTime afterDST = new DateTime (2007, 10, 28, 1, 0, 0, DateTimeKind.Utc);
246                                 Assert.IsFalse (london.IsDaylightSavingTime (beforeDST), "Just before DST");
247                                 Assert.IsTrue (london.IsDaylightSavingTime (startDST), "the first seconds of DST");
248                                 Assert.IsTrue (london.IsDaylightSavingTime (endDST), "The last seconds of DST");
249                                 Assert.IsFalse (london.IsDaylightSavingTime (afterDST), "Just after DST");
250                         }
251                 
252                 #if SLOW_TESTS
253                         [Test]
254                         public void MatchTimeZoneBehavior ()
255                         {
256                                 TimeZone tzone = TimeZone.CurrentTimeZone;
257                                 TimeZoneInfo local = TimeZoneInfo.Local;
258                                 for (DateTime date = new DateTime (2007, 01, 01, 0, 0, 0, DateTimeKind.Local); date < new DateTime (2007, 12, 31, 23, 59, 59); date += new TimeSpan (0,1,0)) {
259                                         date = DateTime.SpecifyKind (date, DateTimeKind.Local);
260                                         if (local.IsInvalidTime (date))
261                                                 continue;
262                                         Assert.IsTrue (tzone.IsDaylightSavingTime (date) == local.IsDaylightSavingTime (date));
263                                 }
264                         }
265                 #endif
266                 }
267                 
268                 [TestFixture]
269                 public class ConvertTimeTests
270                 {
271                         TimeZoneInfo london;
272                 
273                         [SetUp]
274                         public void CreateTimeZones ()
275                         {
276                                 TimeZoneInfo.TransitionTime start = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,1,0,0), 3, 5, DayOfWeek.Sunday);
277                                 TimeZoneInfo.TransitionTime end = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,2,0,0), 10, 5, DayOfWeek.Sunday);
278                                 TimeZoneInfo.AdjustmentRule rule = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (DateTime.MinValue.Date, DateTime.MaxValue.Date, new TimeSpan (1,0,0), start, end);
279                                 london = TimeZoneInfo.CreateCustomTimeZone ("Europe/London", new TimeSpan (0), "Europe/London", "British Standard Time", "British Summer Time", new TimeZoneInfo.AdjustmentRule [] {rule});
280                         }
281                 
282                         [Test]
283                         [ExpectedException (typeof (ArgumentException))]
284                         public void ConvertFromUtc_KindIsLocalException ()
285                         {
286                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
287                                         throw new ArgumentException ();
288                                 TimeZoneInfo.ConvertTimeFromUtc (new DateTime (2007, 5, 3, 11, 8, 0, DateTimeKind.Local), TimeZoneInfo.Local);  
289                         }
290                 
291                         [Test]
292                         [ExpectedException (typeof (ArgumentNullException))]
293                         public void ConvertFromUtc_DestinationTimeZoneIsNullException ()
294                         {
295                                 TimeZoneInfo.ConvertTimeFromUtc (new DateTime (2007, 5, 3, 11, 8, 0), null);            
296                         }
297                 
298                         [Test]
299                         public void ConvertFromUtc_DestinationIsUTC ()
300                         {
301                                 DateTime now = DateTime.UtcNow;
302                                 DateTime converted = TimeZoneInfo.ConvertTimeFromUtc (now, TimeZoneInfo.Utc);
303                                 Assert.AreEqual (now, converted);
304                         }
305                         
306                         [Test]
307                         public void ConvertFromUTC_ConvertInWinter ()
308                         {
309                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
310                                         Assert.Ignore ("Not running on Unix.");
311                                 DateTime utc = new DateTime (2007, 12, 25, 12, 0, 0);
312                                 DateTime converted = TimeZoneInfo.ConvertTimeFromUtc (utc, london);
313                                 Assert.AreEqual (utc, converted);
314                         }
315                 
316                         [Test]
317                         public void ConvertFromUtc_ConvertInSummer ()
318                         {
319                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
320                                         Assert.Ignore ("Not running on Unix.");
321                                 DateTime utc = new DateTime (2007, 06, 01, 12, 0, 0);
322                                 DateTime converted = TimeZoneInfo.ConvertTimeFromUtc (utc, london);
323                                 Assert.AreEqual (utc + new TimeSpan (1,0,0), converted);
324                         }
325                 
326                         [Test]
327                         public void ConvertToUTC_KindIsUtc ()
328                         {
329                                 DateTime now = DateTime.UtcNow;
330                                 Assert.AreEqual (now.Kind, DateTimeKind.Utc);
331                                 DateTime converted = TimeZoneInfo.ConvertTimeToUtc (now);
332                                 Assert.AreEqual (now, converted);
333                         }
334                 
335                         [Test]
336                         [ExpectedException (typeof (ArgumentException))]
337                         public void ConvertToUTC_KindIsUTCButSourceIsNot ()
338                         {
339                                 TimeZoneInfo.ConvertTimeToUtc (new DateTime (2007, 5, 3, 12, 8, 0, DateTimeKind.Utc), london);
340                         }
341                 
342                         [Test]
343                         [ExpectedException (typeof (ArgumentException))]
344                         public void ConvertToUTC_KindIsLocalButSourceIsNot ()
345                         {
346                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
347                                         throw new ArgumentException ();
348                                 TimeZoneInfo.ConvertTimeToUtc (new DateTime (2007, 5, 3, 12, 8, 0, DateTimeKind.Local), london);        
349                         }
350                 
351                         [Test]
352                         [ExpectedException (typeof (ArgumentException))]
353                         public void ConvertToUTC_InvalidDate ()
354                         {
355                                 TimeZoneInfo.ConvertTimeToUtc (new DateTime (2007, 3, 25, 1, 30, 0), london);
356                         }
357                 
358                         [Test]
359                         [ExpectedException (typeof (ArgumentNullException))]
360                         public void ConvertToUTC_SourceIsNull ()
361                         {
362                                 TimeZoneInfo.ConvertTimeToUtc (new DateTime (2007, 5, 3, 12, 16, 0), null);
363                         }
364                 
365                 #if SLOW_TESTS
366                         [Test]
367                         public void ConvertToUtc_MatchDateTimeBehavior ()
368                         {
369                                 for (DateTime date = new DateTime (2007, 01, 01, 0, 0, 0); date < new DateTime (2007, 12, 31, 23, 59, 59); date += new TimeSpan (0,1,0)) {
370                                         Assert.AreEqual (TimeZoneInfo.ConvertTimeToUtc (date), date.ToUniversalTime ());
371                                 }
372                         }
373                 #endif
374                 
375                         [Test]
376                         public void ConvertFromToUtc ()
377                         {
378                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
379                                         Assert.Ignore ("Not running on Unix.");
380                                 DateTime utc = DateTime.UtcNow;
381                                 Assert.AreEqual (utc.Kind, DateTimeKind.Utc);
382                                 DateTime converted = TimeZoneInfo.ConvertTimeFromUtc (utc, london);
383                                 Assert.AreEqual (converted.Kind, DateTimeKind.Unspecified);
384                                 DateTime back = TimeZoneInfo.ConvertTimeToUtc (converted, london);
385                                 Assert.AreEqual (back.Kind, DateTimeKind.Utc);
386                                 Assert.AreEqual (utc, back);
387                 
388                         }
389
390
391                         [Test]
392                         public void ConvertFromToLocal ()
393                         {
394                                 DateTime utc = DateTime.UtcNow;
395                                 Assert.AreEqual(utc.Kind, DateTimeKind.Utc);
396                                 DateTime converted = TimeZoneInfo.ConvertTimeFromUtc(utc, TimeZoneInfo.Local);
397                         #if NET_4_0
398                                 Assert.AreEqual(DateTimeKind.Local, converted.Kind);
399                         #else
400                                 Assert.AreEqual(DateTimeKind.Unspecified, converted.Kind);
401                         #endif
402                                 DateTime back = TimeZoneInfo.ConvertTimeToUtc(converted, TimeZoneInfo.Local);
403                                 Assert.AreEqual(back.Kind, DateTimeKind.Utc);
404                                 Assert.AreEqual(utc, back);
405                         }
406
407                         [Test]
408                         public void ConvertToTimeZone ()
409                         {
410                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
411                                         Assert.Ignore ("Not running on Unix.");
412
413                                 TimeZoneInfo.ConvertTime (DateTime.Now, TimeZoneInfo.FindSystemTimeZoneById("Pacific/Auckland"));
414                         }
415                 }
416                 
417                 [TestFixture]
418                 public class IsInvalidTimeTests
419                 {
420                         TimeZoneInfo london;
421                 
422                         [SetUp]
423                         public void CreateTimeZones ()
424                         {
425                                 TimeZoneInfo.TransitionTime start = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,1,0,0), 3, 5, DayOfWeek.Sunday);
426                                 TimeZoneInfo.TransitionTime end = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,2,0,0), 10, 5, DayOfWeek.Sunday);
427                                 TimeZoneInfo.AdjustmentRule rule = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (DateTime.MinValue.Date, DateTime.MaxValue.Date, new TimeSpan (1,0,0), start, end);
428                                 london = TimeZoneInfo.CreateCustomTimeZone ("Europe/London", new TimeSpan (0), "Europe/London", "British Standard Time", "British Summer Time", new TimeZoneInfo.AdjustmentRule [] {rule});
429                         }
430                 
431                 #if SLOW_TESTS
432                         [Test]
433                         public void UTCDate ()
434                         {
435                                 for (DateTime date = new DateTime (2007, 01, 01, 0, 0, 0); date < new DateTime (2007, 12, 31, 23, 59, 59); date += new TimeSpan (0,1,0)) {
436                                         date = DateTime.SpecifyKind (date, DateTimeKind.Utc);
437                                         Assert.IsFalse (london.IsInvalidTime (date));
438                                 }
439                         }
440                 #endif
441                         [Test]
442                         public void InvalidDates ()
443                         {
444                                 Assert.IsFalse (london.IsInvalidTime (new DateTime (2007, 03, 25, 0, 59, 59)));
445                                 Assert.IsTrue (london.IsInvalidTime (new DateTime (2007, 03, 25, 1, 0, 0)));
446                                 Assert.IsTrue (london.IsInvalidTime (new DateTime (2007, 03, 25, 1, 59, 59)));
447                                 Assert.IsFalse (london.IsInvalidTime (new DateTime (2007, 03, 25, 2, 0, 0)));
448                         }
449                 }
450                 
451                 [TestFixture]
452                 public class IsAmbiguousTimeTests
453                 {
454                         TimeZoneInfo london;
455                 
456                         [SetUp]
457                         public void CreateTimeZones ()
458                         {
459                                 TimeZoneInfo.TransitionTime start = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,1,0,0), 3, 5, DayOfWeek.Sunday);
460                                 TimeZoneInfo.TransitionTime end = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,2,0,0), 10, 5, DayOfWeek.Sunday);
461                                 TimeZoneInfo.AdjustmentRule rule = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (DateTime.MinValue.Date, DateTime.MaxValue.Date, new TimeSpan (1,0,0), start, end);
462                                 london = TimeZoneInfo.CreateCustomTimeZone ("Europe/London", new TimeSpan (0), "Europe/London", "British Standard Time", "British Summer Time", new TimeZoneInfo.AdjustmentRule [] {rule});
463                         }
464                 
465                         [Test]
466                         public void AmbiguousDates ()
467                         {
468                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
469                                         Assert.Ignore ("Not running on Unix.");
470                                 Assert.IsFalse (london.IsAmbiguousTime (new DateTime (2007, 10, 28, 1, 0, 0)));
471                                 Assert.IsTrue (london.IsAmbiguousTime (new DateTime (2007, 10, 28, 1, 0, 1)));
472                                 Assert.IsTrue (london.IsAmbiguousTime (new DateTime (2007, 10, 28, 2, 0, 0)));
473                                 Assert.IsFalse (london.IsAmbiguousTime (new DateTime (2007, 10, 28, 2, 0, 1)));
474                         }
475                 
476                         [Test]
477                         public void AmbiguousUTCDates ()
478                         {
479                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
480                                         Assert.Ignore ("Not running on Unix.");
481                                 Assert.IsFalse (london.IsAmbiguousTime (new DateTime (2007, 10, 28, 0, 0, 0, DateTimeKind.Utc)));
482                                 Assert.IsTrue (london.IsAmbiguousTime (new DateTime (2007, 10, 28, 0, 0, 1, DateTimeKind.Utc)));
483                                 Assert.IsTrue (london.IsAmbiguousTime (new DateTime (2007, 10, 28, 0, 59, 59, DateTimeKind.Utc)));
484                                 Assert.IsFalse (london.IsAmbiguousTime (new DateTime (2007, 10, 28, 1, 0, 0, DateTimeKind.Utc)));
485                         }
486                 
487                 #if SLOW_TESTS
488                         [Test]
489                         public void AmbiguousInUTC ()
490                         {
491                                 for (DateTime date = new DateTime (2007, 01, 01, 0, 0, 0); date < new DateTime (2007, 12, 31, 23, 59, 59); date += new TimeSpan (0,1,0)) {
492                                         Assert.IsFalse (TimeZoneInfo.Utc.IsAmbiguousTime (date));
493                                 }
494                         }
495                 #endif
496                 }
497                 
498                 [TestFixture]
499                 public class GetSystemTimeZonesTests
500                 {
501                         [Test]
502                         public void NotEmpty ()
503                         {
504                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
505                                         Assert.Ignore ("Not running on Unix.");
506                                 global::System.Collections.ObjectModel.ReadOnlyCollection<TimeZoneInfo> systemTZ = TimeZoneInfo.GetSystemTimeZones ();
507                                 Assert.IsNotNull(systemTZ, "SystemTZ is null");
508                                 Assert.IsFalse (systemTZ.Count == 0, "SystemTZ is empty");
509                         }
510                 
511                         [Test]
512                         public void ContainsBrussels ()
513                         {
514                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
515                                         Assert.Ignore ("Not running on Unix.");
516                                 global::System.Collections.ObjectModel.ReadOnlyCollection<TimeZoneInfo> systemTZ = TimeZoneInfo.GetSystemTimeZones ();
517                                 foreach (TimeZoneInfo tz in systemTZ) {
518                                         if (tz.Id == "Europe/Brussels")
519                                                 return;
520                                 }
521                                 Assert.Fail ("Europe/Brussels not found in SystemTZ");
522                         }
523                 }
524                 
525                 [TestFixture]
526                 public class FindSystemTimeZoneByIdTests
527                 {
528                         [Test]
529                         [ExpectedException (typeof (ArgumentNullException))]
530                         public void NullId ()
531                         {
532                                 TimeZoneInfo.FindSystemTimeZoneById (null);
533                         }
534                 
535                         [Test]
536                         [ExpectedException (typeof (TimeZoneNotFoundException))]
537                         public void NonSystemTimezone ()
538                         {
539                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
540                                         throw new TimeZoneNotFoundException ();
541                                 TimeZoneInfo.FindSystemTimeZoneById ("Neverland/The_Lagoon");
542                         }
543                 
544                         [Test]
545                         public void FindBrusselsTZ ()
546                         {
547                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
548                                         Assert.Ignore ("Not running on Unix.");
549                                 TimeZoneInfo brussels = TimeZoneInfo.FindSystemTimeZoneById ("Europe/Brussels");
550                                 Assert.IsNotNull (brussels);
551                         }
552                 
553                         [Test]
554                         public void OffsetIsCorrectInKinshasa ()
555                         {
556                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
557                                         Assert.Ignore ("Not running on Unix.");
558                                 TimeZoneInfo kin = TimeZoneInfo.FindSystemTimeZoneById ("Africa/Kinshasa");
559                                 Assert.AreEqual (new TimeSpan (1,0,0), kin.BaseUtcOffset, "BaseUtcOffset in Kinshasa is not +1h");
560                         }
561                 
562                         [Test]
563                         public void OffsetIsCorrectInBrussels ()
564                         {
565                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
566                                         Assert.Ignore ("Not running on Unix.");
567                                 TimeZoneInfo brussels = TimeZoneInfo.FindSystemTimeZoneById ("Europe/Brussels");
568                                 Assert.AreEqual (new TimeSpan (1,0,0), brussels.BaseUtcOffset, "BaseUtcOffset for Brussels is not +1h");
569                         }
570                 
571                         [Test]
572                         public void NoDSTInKinshasa ()
573                         {
574                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
575                                         Assert.Ignore ("Not running on Unix.");
576                                 TimeZoneInfo kin = TimeZoneInfo.FindSystemTimeZoneById ("Africa/Kinshasa");
577                                 Assert.IsFalse (kin.SupportsDaylightSavingTime);
578                         }
579                 
580                         [Test]
581                         public void BrusselsSupportsDST ()
582                         {
583                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
584                                         Assert.Ignore ("Not running on Unix.");
585                                 TimeZoneInfo brussels = TimeZoneInfo.FindSystemTimeZoneById ("Europe/Brussels");
586                                 Assert.IsTrue (brussels.SupportsDaylightSavingTime);
587                         }
588                 
589                         [Test]
590                         public void MelbourneSupportsDST ()
591                         {
592                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
593                                         Assert.Ignore ("Not running on Unix.");
594                                 TimeZoneInfo melbourne = TimeZoneInfo.FindSystemTimeZoneById ("Australia/Melbourne");
595                                 Assert.IsTrue (melbourne.SupportsDaylightSavingTime);
596                         }
597                 
598                         [Test]
599                         public void RomeAndVaticanSharesTime ()
600                         {
601                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
602                                         Assert.Ignore ("Not running on Unix.");
603                                 TimeZoneInfo rome = TimeZoneInfo.FindSystemTimeZoneById ("Europe/Rome");
604                                 TimeZoneInfo vatican = TimeZoneInfo.FindSystemTimeZoneById ("Europe/Vatican");
605                                 Assert.IsTrue (rome.HasSameRules (vatican));
606                         }
607
608                         [Test]
609                         public void FindSystemTimeZoneById_Local_Roundtrip ()
610                         {
611                                 Assert.AreEqual (TimeZoneInfo.Local.Id, TimeZoneInfo.FindSystemTimeZoneById (TimeZoneInfo.Local.Id).Id);
612                         }
613
614                         [Test]
615                         public void Test326 ()
616                         {
617                                 DateTime utc = DateTime.UtcNow;
618                                 DateTime local = TimeZoneInfo.ConvertTime (utc, TimeZoneInfo.Utc, TimeZoneInfo.FindSystemTimeZoneById (TimeZoneInfo.Local.Id));
619                                 Assert.AreEqual (local, utc + TimeZoneInfo.Local.GetUtcOffset (utc), "ConvertTime/Local");
620                         }
621                 
622                 #if SLOW_TESTS
623                         [Test]
624                         public void BrusselsAdjustments ()
625                         {
626                                 TimeZoneInfo.TransitionTime start = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,2,0,0), 3, 5, DayOfWeek.Sunday);
627                                 TimeZoneInfo.TransitionTime end = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,3,0,0), 10, 5, DayOfWeek.Sunday);
628                                 TimeZoneInfo.AdjustmentRule rule = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (DateTime.MinValue.Date, DateTime.MaxValue.Date, new TimeSpan (1,0,0), start, end);
629                                 TimeZoneInfo brussels = TimeZoneInfo.CreateCustomTimeZone ("Europe/Brussels", new TimeSpan (1, 0, 0), "Europe/Brussels", "", "", new TimeZoneInfo.AdjustmentRule [] {rule});
630                 
631                                 TimeZoneInfo brussels_sys = TimeZoneInfo.FindSystemTimeZoneById ("Europe/Brussels");
632                 
633                                 for (DateTime date = new DateTime (2006, 01, 01, 0, 0, 0, DateTimeKind.Local); date < new DateTime (2007, 12, 31, 23, 59, 59); date += new TimeSpan (0,30,0)) {
634                                         Assert.AreEqual (brussels.GetUtcOffset (date), brussels_sys.GetUtcOffset (date));
635                                         Assert.AreEqual (brussels.IsDaylightSavingTime (date), brussels_sys.IsDaylightSavingTime (date));
636                                 }               
637                         }
638                 #endif
639                 }
640                 
641                 [TestFixture]
642                 public class GetAmbiguousTimeOffsetsTests
643                 {
644                         [Test]
645                         [ExpectedException (typeof(ArgumentException))]
646                         public void DateIsNotAmbiguous ()
647                         {
648                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
649                                         throw new ArgumentException ();
650                                 TimeZoneInfo brussels = TimeZoneInfo.FindSystemTimeZoneById ("Europe/Brussels");
651                                 DateTime date = new DateTime (2007, 05, 11, 11, 40, 00);
652                                 brussels.GetAmbiguousTimeOffsets (date);
653                         }
654                 
655                         [Test]
656                         public void AmbiguousOffsets ()
657                         {
658                                 if (Environment.OSVersion.Platform != PlatformID.Unix)
659                                         Assert.Ignore ("Not running on Unix.");
660                                 TimeZoneInfo brussels = TimeZoneInfo.FindSystemTimeZoneById ("Europe/Brussels");
661                                 DateTime date = new DateTime (2007, 10, 28, 2, 30, 00);
662                                 Assert.IsTrue (brussels.IsAmbiguousTime (date));
663                                 Assert.AreEqual (2, brussels.GetAmbiguousTimeOffsets (date).Length);
664                                 Assert.AreEqual (new TimeSpan[] {new TimeSpan (1, 0, 0), new TimeSpan (2, 0, 0)}, brussels.GetAmbiguousTimeOffsets (date));
665                         }
666                 }
667
668                 [TestFixture]
669                 public class HasSameRulesTests
670                 {
671                         [Test]
672                         public void NullAdjustments () //bnc #391011
673                         {
674                                 TimeZoneInfo utc = TimeZoneInfo.Utc;
675                                 TimeZoneInfo custom = TimeZoneInfo.CreateCustomTimeZone ("Custom", new TimeSpan (0), "Custom", "Custom");
676                                 Assert.IsTrue (utc.HasSameRules (custom));
677                         }
678                 }
679
680                 [TestFixture]
681                 public class SerializationTests
682                 {
683                         [Test]
684                         public void Serialization_Deserialization ()
685                         {
686                                 TimeZoneInfo.TransitionTime start = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,1,0,0), 3, 5, DayOfWeek.Sunday);
687                                 TimeZoneInfo.TransitionTime end = TimeZoneInfo.TransitionTime.CreateFloatingDateRule (new DateTime (1,1,1,2,0,0), 10, 5, DayOfWeek.Sunday);
688                                 TimeZoneInfo.AdjustmentRule rule = TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (DateTime.MinValue.Date, DateTime.MaxValue.Date, new TimeSpan (1,0,0), start, end);
689                                 TimeZoneInfo london = TimeZoneInfo.CreateCustomTimeZone ("Europe/London", new TimeSpan (0), "Europe/London", "British Standard Time", "British Summer Time", new TimeZoneInfo.AdjustmentRule [] {rule});
690                                 MemoryStream stream = new MemoryStream ();
691                                 BinaryFormatter formatter = new BinaryFormatter ();
692                                 formatter.Serialize (stream, london);
693                                 stream.Position = 0;
694                                 TimeZoneInfo deserialized = (TimeZoneInfo) formatter.Deserialize (stream);
695                                 stream.Close ();
696                                 stream.Dispose ();
697                                 Assert.IsTrue (london.Equals (deserialized));
698                         }
699                 }
700         }
701 }
702 #endif