summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/std/time/month/1.cc
blob: 89cb9aba1523e7608b38c0a7d2e0dfe3a914f978 (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
// { dg-options "-std=gnu++2a" }
// { dg-do compile { target c++2a } }

// Copyright (C) 2020-2023 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library.  This library 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 3, or (at your option)
// any later version.

// This library 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 library; see the file COPYING3.  If not see
// <http://www.gnu.org/licenses/>.

// Class template day [time.cal.month]

#include <chrono>

constexpr void
constexpr_month()
{
  using namespace std::chrono;

  month dm{};
  ++(++dm);
  dm++;
  --(--dm);
  dm--;
  dm += months{3};
  dm -= months{3};

  static_assert(February + months{11} == January);
  static_assert(January + months{1200} == January);
  static_assert(January + months{1201} == February);
  static_assert(months{-1200} + January == January);
  static_assert(months{-1201} + January == December);
  static_assert(January - months{1200} == January);
  static_assert(January - months{-1200} == January);
  static_assert(January - months{1201} == December);

  static_assert(January - February == months{11});
  static_assert(February - January == months{1});
  static_assert(June - June == months{});

  static_assert(++month{4} == month{5});
  static_assert(month{4}++ == month{4});
  static_assert(--month{4} == month{3});
  static_assert(month{4}-- == month{4});
  static_assert((month{4} += months{3}) == month{7});
  static_assert((month{4} -= months{3}) == month{1});

  static_assert(!month{}.ok());
  static_assert(month{1}.ok());
  static_assert(month{12}.ok());
  static_assert(!month{13}.ok());

  static_assert(unsigned{month{7}} == 7);

  static_assert(!(month{0} == month{1}));
  static_assert( (month{0} != month{2}));
  static_assert( (month{0} <  month{3}));
  static_assert(!(month{0} >  month{4}));
  static_assert( (month{0} <= month{5}));
  static_assert(!(month{0} >= month{6}));

  static_assert(month{0} <=> month{1} == std::strong_ordering::less);
  static_assert(month{3} <=> month{3} == std::strong_ordering::equal);
  static_assert(month{5} <=> month{2} == std::strong_ordering::greater);
}