File: version.c

package info (click to toggle)
libsigrok 0.5.2-5.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,428 kB
  • sloc: ansic: 89,004; sh: 4,478; cpp: 2,198; makefile: 852; python: 270; java: 13; xml: 8
file content (110 lines) | stat: -rw-r--r-- 3,456 bytes parent folder | download | duplicates (4)
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
104
105
106
107
108
109
110
/*
 * This file is part of the libsigrok project.
 *
 * Copyright (C) 2013 Uwe Hermann <uwe@hermann-uwe.de>
 *
 * 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/>.
 */

#include <config.h>
#include <stdlib.h>
#include <check.h>
#include <libsigrok/libsigrok.h>
#include "lib.h"

/*
 * Check the version number API calls and macros.
 *
 * The numbers returned by the sr_*_version*get() calls must match the
 * respective SR_*_VERSION* macro values, must be >= 0, and must not be
 * unreasonably high (> 20), otherwise something is probably wrong.
 */
START_TEST(test_version_numbers)
{
	int ver;

	ver = sr_package_version_major_get();
	fail_unless(ver == SR_PACKAGE_VERSION_MAJOR);
	fail_unless(ver >= 0 && ver <= 20);
	ver = sr_package_version_minor_get();
	fail_unless(ver == SR_PACKAGE_VERSION_MINOR);
	fail_unless(ver >= 0 && ver <= 20);
	ver = sr_package_version_micro_get();
	fail_unless(ver == SR_PACKAGE_VERSION_MICRO);
	fail_unless(ver >= 0 && ver <= 20);

	ver = sr_lib_version_current_get();
	fail_unless(ver == SR_LIB_VERSION_CURRENT);
	fail_unless(ver >= 0 && ver <= 20);
	ver = sr_lib_version_revision_get();
	fail_unless(ver == SR_LIB_VERSION_REVISION);
	fail_unless(ver >= 0 && ver <= 20);
	ver = sr_lib_version_age_get();
	fail_unless(ver == SR_LIB_VERSION_AGE);
	fail_unless(ver >= 0 && ver <= 20);
}
END_TEST

/*
 * Check the version number API calls and macros.
 *
 * The string representations of the package/lib version must neither be
 * NULL nor empty, and the length shall be within an expected range.
 *
 * The lower limit assumes:
 * - A version text consists of three parts (major, minor, micro),
 *   like "0.1.0".
 * - Three numbers with at least one digit, and their separators,
 *   result in a minimum length of 5.
 *
 * The upper limit assumes:
 * - The major, minor, and micro parts won't contain more than two
 *   digits each (this is an arbitrary choice).
 * - An optional "-git-<hash>" suffix might follow. While git(1)
 *   defaults to 7 hex digits for abbreviated hashes, projects of
 *   larger scale might recommend to use more digits to avoid
 *   potential ambiguity (e.g. Linux recommends core.abbrev=12).
 *   Again, this is an arbitrary choice.
 */
START_TEST(test_version_strings)
{
	const char *str;
	const size_t len_min = 5;
	const size_t len_max = 2 + 1 + 2 + 1 + 2 + 5 + 12;

	str = sr_package_version_string_get();
	fail_unless(str != NULL);
	fail_unless(strlen(str) >= len_min);
	fail_unless(strlen(str) <= len_max);
	str = sr_lib_version_string_get();
	fail_unless(str != NULL);
	fail_unless(strlen(str) >= len_min);
	fail_unless(strlen(str) <= len_max);
}
END_TEST

Suite *suite_version(void)
{
	Suite *s;
	TCase *tc;

	s = suite_create("version");

	tc = tcase_create("version");
	tcase_add_test(tc, test_version_numbers);
	tcase_add_test(tc, test_version_strings);
	suite_add_tcase(s, tc);

	return s;
}