VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTStrVersion.cpp

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.1 KB
Line 
1/* $Id: tstRTStrVersion.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT Testcase - Version String Comparison.
4 */
5
6/*
7 * Copyright (C) 2011-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37
38/*********************************************************************************************************************************
39* Header Files *
40*********************************************************************************************************************************/
41#include <iprt/string.h>
42
43#include <iprt/test.h>
44#include <iprt/stream.h>
45
46
47int main()
48{
49 RTTEST hTest;
50 int rc = RTTestInitAndCreate("tstRTStrVersion", &hTest);
51 if (rc)
52 return rc;
53 RTTestBanner(hTest);
54
55 RTTestSub(hTest, "RTStrVersionCompare");
56 static struct
57 {
58 const char *pszVer1;
59 const char *pszVer2;
60 int iResult;
61 } const aTests[] =
62 {
63 { "", "", 0 },
64 { "asdf", "", 1 },
65 { "asdf234", "1.4.5", 1 },
66 { "12.foo006", "12.6", 1 },
67 { "1", "1", 0 },
68 { "1", "100", -1},
69 { "100", "1", 1 },
70 { "3", "4", -1},
71 { "1", "0.1", 1 },
72 { "1", "0.0.0.0.10000", 1 },
73 { "0100", "100", 0 },
74 { "1.0.0", "1", 0 },
75 { "1.0.0", "100.0.0", -1},
76 { "1", "1.0.3.0", -1},
77 { "1.4.5", "1.2.3", 1 },
78 { "1.2.3", "1.4.5", -1},
79 { "1.2.3", "4.5.6", -1},
80 { "1.0.4", "1.0.3", 1 },
81 { "0.1", "0.0.1", 1 },
82 { "0.0.1", "0.1.1", -1},
83 { "3.1.0", "3.0.14", 1 },
84 { "2.0.12", "3.0.14", -1},
85 { "3.1", "3.0.22", 1 },
86 { "3.0.14", "3.1.0", -1},
87 { "45.63", "04.560.30", 1 },
88 { "45.006", "45.6", 0 },
89 { "23.206", "23.06", 1 },
90 { "23.2", "23.060", -1},
91
92 { "VirtualBox-2.0.8-Beta2", "VirtualBox-2.0.8_Beta3-r12345", -1 },
93 { "VirtualBox-2.2.4-Beta2", "VirtualBox-2.2.2", 1 },
94 { "VirtualBox-2.2.4-Beta3", "VirtualBox-2.2.2-Beta4", 1 },
95 { "VirtualBox-3.1.8-Alpha1", "VirtualBox-3.1.8-Alpha1-r61454", -1 },
96 { "VirtualBox-3.1.0", "VirtualBox-3.1.2_Beta1", -1 },
97 { "3.1.0_BETA-r12345", "3.1.2", -1 },
98 { "3.1.0_BETA1r12345", "3.1.0", -1 },
99 { "3.1.0_BETAr12345", "3.1.0", -1 },
100 { "3.1.0_BETA-r12345", "3.1.0", -1 },
101 { "3.1.0_BETA-r12345", "3.1.0", -1 },
102 { "3.1.0_BETA-r12345", "3.1.0.0", -1 },
103 { "3.1.0_BETA", "3.1.0.0", -1 },
104 { "3.1.0_BETA1", "3.1.0", -1 },
105 { "3.1.0_BETA-r12345", "3.1.0r12345", -1 },
106 { "3.1.0_BETA1-r12345", "3.1.0_BETA-r12345", 0 },
107 { "3.1.0_BETA1-r12345", "3.1.0_BETA1-r12345", 0 },
108 { "3.1.0_BETA2-r12345", "3.1.0_BETA1-r12345", 1 },
109 { "3.1.0_BETA2-r12345", "3.1.0_BETA999-r12345", -1 },
110 { "3.1.0_BETA2", "3.1.0_ABC", -1 }, /* ABC isn't indicating a prerelease, BETA does. */
111 { "3.1.0_BETA", "3.1.0_ATEB", -1 },
112 { "4.0.0_ALPHAr68482", "4.0.0_ALPHAr68483", -1 },
113 { "4.0.0_ALPHA1r68482", "4.0.0_ALPHAr68482", 0 },
114 { "4.0.0_ALPHA-r68482", "4.0.0_ALPHAr68482", 0 },
115 { "4.0.0_ALPHAr68483", "4.0.0_BETAr68783", -1 },
116 { "4.0.0_ALPHAr68483", "4.0.0_BETA1r68783", -1 },
117 { "4.0.0_ALPHAr68483", "4.0.0_BETA2r68783", -1 },
118 { "4.0.0_ALPHAr68483", "4.0.0_BETA2r68784", -1 },
119 { "4.0.6", "4.0.6_Ubuntu", -1 }, /* Without stripped guest OS string (Ubuntu). */
120 { "4.0.6_Windows", "4.0.6", 1 }, /* Without stripped guest OS string (Windows). */
121 { "4.1.6r74567", "4.1.6r74567", 0 },
122 { "4.1.7r74567", "4.1.6r74567", 1 },
123 { "4.1.5r74567", "4.1.6r74567", -1 },
124 { "4.1.6r74567-ENTERPRISE", "4.1.6r74567", 1 } /* The tagged version is "newer". */
125 };
126 for (unsigned iTest = 0; iTest < RT_ELEMENTS(aTests); iTest++)
127 {
128 int iResult = RTStrVersionCompare(aTests[iTest].pszVer1, aTests[iTest].pszVer2);
129 if (iResult != aTests[iTest].iResult)
130 RTTestFailed(hTest, "#%u: '%s' <-> '%s' -> %d, expected %d",
131 iTest, aTests[iTest].pszVer1, aTests[iTest].pszVer2, iResult, aTests[iTest].iResult);
132
133 iResult = -RTStrVersionCompare(aTests[iTest].pszVer2, aTests[iTest].pszVer1);
134 if (iResult != aTests[iTest].iResult)
135 RTTestFailed(hTest, "#%u: '%s' <-> '%s' -> %d, expected %d [inv]",
136 iTest, aTests[iTest].pszVer1, aTests[iTest].pszVer2, iResult, aTests[iTest].iResult);
137 }
138
139 /*
140 * Summary.
141 */
142 return RTTestSummaryAndDestroy(hTest);
143}
144
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use