VirtualBox

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

Last change on this file since 62477 was 62477, checked in by vboxsync, 8 years ago

(C) 2016

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette