summaryrefslogtreecommitdiff
path: root/tests/core/test-birthday-chunk.vala
blob: 2135c491244990bf2ccb27758be6568f6976fa40 (plain)
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
/*
 * Copyright (C) 2022 Niels De Graef <nielsdegraef@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

void main (string[] args) {
  Test.init (ref args);
  Test.add_func ("/core/birthday-chunk/property_name_chunk", test_property_name);
  Test.add_func ("/core/birthday-chunk/is-empty", test_is_empty);
  Test.add_func ("/core/birthday-chunk/leap-day-birthday", test_leap_day_birthday);
  Test.add_func ("/core/birthday-chunk/serialize-basic", test_serialize_basic);
  Test.add_func ("/core/birthday-chunk/serialize-pre-epoch", test_serialize_pre_epoch);
  Test.run ();
}

// Make sure that "birthday" maps to a BirthdayChunk
private void test_property_name () {
  var contact = new Contacts.Contact.empty ();

  var chunk = contact.create_chunk ("birthday", null);
  assert_nonnull (chunk);
  assert_true (chunk is Contacts.BirthdayChunk);
  assert_true (chunk.property_name == "birthday");
}

private void test_is_empty () {
  var contact = new Contacts.Contact.empty ();
  var chunk = (Contacts.BirthdayChunk) contact.create_chunk ("birthday", null);
  assert_nonnull (chunk);
  assert_true (chunk.is_empty);

  chunk.birthday = new DateTime.now_utc ();
  assert_false (chunk.is_empty);

  chunk.birthday = null;
  assert_true (chunk.is_empty);
}

private void test_leap_day_birthday () {
  var contact = new Contacts.Contact.empty ();
  var chunk = (Contacts.BirthdayChunk) contact.create_chunk ("birthday", null);
  assert_nonnull (chunk);
  chunk.birthday = new DateTime.local (2020, 2, 29, 0, 0, 0);

  var leap_day = new DateTime.local (2024, 2, 29, 0, 0, 0);
  assert_true (chunk.is_today (leap_day));

  var feb_28_leap_year = new DateTime.local (2024, 2, 28, 0, 0, 0);
  assert_false (chunk.is_today (feb_28_leap_year));

  var feb_28_non_leap_year = new DateTime.local (2023, 2, 28, 0, 0, 0);
  assert_true (chunk.is_today (feb_28_non_leap_year));
}

private void test_serialize_basic () {
  var contact = new Contacts.Contact.empty ();
  var chunk = (Contacts.BirthdayChunk) contact.create_chunk ("birthday", null);

  // If the birthday is not set, serialization should give a null result
  var serialized = chunk.to_gvariant ();
  assert_null (serialized);

  // If the birthday is set, we should have a variant. Without checking its
  // contents, it should deserialize in a new contact
  var old_bd = new DateTime.utc (1992, 8, 1, 0, 0, 0);
  chunk.birthday = old_bd;
  serialized = chunk.to_gvariant ();
  assert_nonnull (serialized);

  var contact2 = new Contacts.Contact.empty ();
  var chunk2 = (Contacts.BirthdayChunk) contact2.create_chunk ("birthday", null);
  chunk2.apply_gvariant (serialized);
  assert_true (old_bd.equal (chunk2.birthday));
}

private void test_serialize_pre_epoch () {
  var contact = new Contacts.Contact.empty ();
  var chunk = (Contacts.BirthdayChunk) contact.create_chunk ("birthday", null);

  // Check that we didn't try to use something that doesn't allow dates before
  // epoch (eg struct tm)
  var old_bd = new DateTime.utc (1961, 7, 3, 0, 0, 0);
  chunk.birthday = old_bd;
  var serialized = chunk.to_gvariant ();
  assert_nonnull (serialized);

  var contact2 = new Contacts.Contact.empty ();
  var chunk2 = (Contacts.BirthdayChunk) contact2.create_chunk ("birthday", null);
  chunk2.apply_gvariant (serialized);
  assert_true (old_bd.equal (chunk2.birthday));
}