blob: 91d53f737eb18ecb4ddd58b65f05fd49c19235c5 [file] [log] [blame]
Daniel Stone5ae7e842017-03-01 11:34:00 +00001/*
2 * Copyright © 2016 Collabora, Ltd.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sublicense, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial
14 * portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26#include "config.h"
27
28#include <stdlib.h>
29#include <stdint.h>
30#include <stdio.h>
31#include <string.h>
32#include <assert.h>
33#include <errno.h>
34#include <unistd.h>
35
36#include "timespec-util.h"
37
38#include "shared/helpers.h"
39#include "zunitc/zunitc.h"
40
41ZUC_TEST(timespec_test, timespec_sub)
42{
43 struct timespec a, b, r;
44
45 a.tv_sec = 1;
46 a.tv_nsec = 1;
47 b.tv_sec = 0;
48 b.tv_nsec = 2;
49 timespec_sub(&r, &a, &b);
50 ZUC_ASSERT_EQ(r.tv_sec, 0);
51 ZUC_ASSERT_EQ(r.tv_nsec, NSEC_PER_SEC - 1);
52}
53
54ZUC_TEST(timespec_test, timespec_to_nsec)
55{
56 struct timespec a;
57
58 a.tv_sec = 4;
59 a.tv_nsec = 4;
60 ZUC_ASSERT_EQ(timespec_to_nsec(&a), (NSEC_PER_SEC * 4ULL) + 4);
61}
62
63ZUC_TEST(timespec_test, millihz_to_nsec)
64{
65 ZUC_ASSERT_EQ(millihz_to_nsec(60000), 16666666);
66}
67
68ZUC_TEST(timespec_test, timespec_add_nsec)
69{
70 struct timespec a, r;
71
72 a.tv_sec = 0;
73 a.tv_nsec = NSEC_PER_SEC - 1;
74 timespec_add_nsec(&r, &a, 1);
75 ZUC_ASSERT_EQ(1, r.tv_sec);
76 ZUC_ASSERT_EQ(0, r.tv_nsec);
77
78 timespec_add_nsec(&r, &a, 2);
79 ZUC_ASSERT_EQ(1, r.tv_sec);
80 ZUC_ASSERT_EQ(1, r.tv_nsec);
81
82 timespec_add_nsec(&r, &a, (NSEC_PER_SEC * 2ULL));
83 ZUC_ASSERT_EQ(2, r.tv_sec);
84 ZUC_ASSERT_EQ(NSEC_PER_SEC - 1, r.tv_nsec);
85
86 timespec_add_nsec(&r, &a, (NSEC_PER_SEC * 2ULL) + 2);
87 ZUC_ASSERT_EQ(r.tv_sec, 3);
88 ZUC_ASSERT_EQ(r.tv_nsec, 1);
89
90 a.tv_sec = 1;
91 a.tv_nsec = 1;
92 timespec_add_nsec(&r, &a, -2);
93 ZUC_ASSERT_EQ(r.tv_sec, 0);
94 ZUC_ASSERT_EQ(r.tv_nsec, NSEC_PER_SEC - 1);
95
96 a.tv_nsec = 0;
97 timespec_add_nsec(&r, &a, -NSEC_PER_SEC);
98 ZUC_ASSERT_EQ(0, r.tv_sec);
99 ZUC_ASSERT_EQ(0, r.tv_nsec);
100
101 a.tv_nsec = 0;
102 timespec_add_nsec(&r, &a, -NSEC_PER_SEC + 1);
103 ZUC_ASSERT_EQ(0, r.tv_sec);
104 ZUC_ASSERT_EQ(1, r.tv_nsec);
105
106 a.tv_nsec = 50;
107 timespec_add_nsec(&r, &a, (-NSEC_PER_SEC * 10ULL));
108 ZUC_ASSERT_EQ(-9, r.tv_sec);
109 ZUC_ASSERT_EQ(50, r.tv_nsec);
110
111 r.tv_sec = 4;
112 r.tv_nsec = 0;
113 timespec_add_nsec(&r, &r, NSEC_PER_SEC + 10ULL);
114 ZUC_ASSERT_EQ(5, r.tv_sec);
115 ZUC_ASSERT_EQ(10, r.tv_nsec);
116
117 timespec_add_nsec(&r, &r, (NSEC_PER_SEC * 3ULL) - 9ULL);
118 ZUC_ASSERT_EQ(8, r.tv_sec);
119 ZUC_ASSERT_EQ(1, r.tv_nsec);
120
121 timespec_add_nsec(&r, &r, (NSEC_PER_SEC * 7ULL) + (NSEC_PER_SEC - 1ULL));
122 ZUC_ASSERT_EQ(16, r.tv_sec);
123 ZUC_ASSERT_EQ(0, r.tv_nsec);
124}