summaryrefslogtreecommitdiffstats
path: root/base/version_unittest.cc
diff options
context:
space:
mode:
authorerikkay@google.com <erikkay@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-29 19:18:57 +0000
committererikkay@google.com <erikkay@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-29 19:18:57 +0000
commit19b8d82f61d84ec8423e3f1c0223410501d35a93 (patch)
tree1f7da60a0285dc67529084b949b793f027187bc6 /base/version_unittest.cc
parent3f4b925165c971f663d87bf31be5a92e4d189a02 (diff)
downloadchromium_src-19b8d82f61d84ec8423e3f1c0223410501d35a93.zip
chromium_src-19b8d82f61d84ec8423e3f1c0223410501d35a93.tar.gz
chromium_src-19b8d82f61d84ec8423e3f1c0223410501d35a93.tar.bz2
Add a Version class and matching unit tests, roughly based on chrome/installer/util/version.*. This version has more flexible parsing rules and is more robust to detecting bogus versions, supporting arbitrary numbers of version components rather than just dotted quads. It's possible that we should switch chrome installer to use this version.
Review URL: http://codereview.chromium.org/19667 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8901 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/version_unittest.cc')
-rw-r--r--base/version_unittest.cc62
1 files changed, 62 insertions, 0 deletions
diff --git a/base/version_unittest.cc b/base/version_unittest.cc
new file mode 100644
index 0000000..d2cf98b
--- /dev/null
+++ b/base/version_unittest.cc
@@ -0,0 +1,62 @@
+// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/scoped_ptr.h"
+#include "base/version.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace {
+
+TEST(Version, GetVersionFromString) {
+ static const struct version_string {
+ const char* input;
+ size_t parts;
+ bool success;
+ } cases[] = {
+ {"0", 1, true},
+ {"0.0", 2, true},
+ {"65537.0", 0, false},
+ {"-1.0", 0, false},
+ {"1.-1.0", 0, false},
+ {"+1.0", 0, false},
+ {"1.+1.0", 0, false},
+ {"1.0a", 0, false},
+ {"1.2.3.4.5.6.7.8.9.0", 10, true},
+ {"02.1", 0, false},
+ {"f.1", 0, false},
+ };
+ for (size_t i = 0; i < ARRAYSIZE_UNSAFE(cases); ++i) {
+ scoped_ptr<Version> vers(Version::GetVersionFromString(cases[i].input));
+ EXPECT_EQ(cases[i].success, vers.get() != NULL);
+ if (cases[i].success)
+ EXPECT_EQ(cases[i].parts, vers->components().size());
+ }
+}
+
+TEST(Version, Compare) {
+ static const struct version_compare {
+ const char* lhs;
+ const char* rhs;
+ int expected;
+ } cases[] = {
+ {"1.0", "1.0", 0},
+ {"1.0", "0.0", 1},
+ {"1.0", "2.0", -1},
+ {"1.0", "1.1", -1},
+ {"1.1", "1.0", 1},
+ {"1.0", "1.0.1", -1},
+ {"1.1", "1.0.1", 1},
+ {"1.1", "1.0.1", 1},
+ {"1.0.0", "1.0", 0},
+ {"1.0.3", "1.0.20", -1},
+ };
+ for (size_t i = 0; i < ARRAYSIZE_UNSAFE(cases); ++i) {
+ scoped_ptr<Version> lhs(Version::GetVersionFromString(cases[i].lhs));
+ scoped_ptr<Version> rhs(Version::GetVersionFromString(cases[i].rhs));
+ EXPECT_EQ(lhs->CompareTo(*rhs), cases[i].expected) <<
+ cases[i].lhs << " ? " << cases[i].rhs;
+ }
+}
+
+}