blob: 9b10d04b9750200c5ece15cdb36f4a29ce818341 [file] [log] [blame]
levin@chromium.org5c528682011-03-28 10:54:15 +09001// Copyright (c) 2011 The Chromium Authors. All rights reserved.
license.botf003cfe2008-08-24 09:55:55 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit3f4a7322008-07-27 06:49:38 +09004
thestig@chromium.org1b6e1b72013-05-14 19:12:56 +09005#include "base/file_version_info.h"
6#include "base/files/file_path.h"
levin@chromium.org5c528682011-03-28 10:54:15 +09007#include "base/memory/scoped_ptr.h"
initial.commit3f4a7322008-07-27 06:49:38 +09008#include "base/path_service.h"
initial.commit3f4a7322008-07-27 06:49:38 +09009#include "testing/gtest/include/gtest/gtest.h"
10
tony@chromium.org9f7a86f2010-04-14 10:46:43 +090011#if defined(OS_WIN)
12#include "base/file_version_info_win.h"
13#endif
14
brettw@chromium.orgb64a5cb2013-02-18 15:14:59 +090015using base::FilePath;
16
initial.commit3f4a7322008-07-27 06:49:38 +090017namespace {
18
thakis@chromium.org5dab7482010-10-04 09:34:04 +090019#if defined(OS_WIN)
thestig@chromium.org8942e862009-09-10 05:00:13 +090020FilePath GetTestDataPath() {
21 FilePath path;
initial.commit3f4a7322008-07-27 06:49:38 +090022 PathService::Get(base::DIR_SOURCE_ROOT, &path);
thestig@chromium.org8942e862009-09-10 05:00:13 +090023 path = path.AppendASCII("base");
jam@chromium.org88d0d232014-07-29 04:45:21 +090024 path = path.AppendASCII("test");
thestig@chromium.org8942e862009-09-10 05:00:13 +090025 path = path.AppendASCII("data");
26 path = path.AppendASCII("file_version_info_unittest");
initial.commit3f4a7322008-07-27 06:49:38 +090027 return path;
28}
thakis@chromium.org5dab7482010-10-04 09:34:04 +090029#endif
initial.commit3f4a7322008-07-27 06:49:38 +090030
thestig@chromium.org1b6e1b72013-05-14 19:12:56 +090031} // namespace
initial.commit3f4a7322008-07-27 06:49:38 +090032
tony@chromium.org9f7a86f2010-04-14 10:46:43 +090033#if defined(OS_WIN)
initial.commit3f4a7322008-07-27 06:49:38 +090034TEST(FileVersionInfoTest, HardCodedProperties) {
35 const wchar_t* kDLLNames[] = {
36 L"FileVersionInfoTest1.dll"
37 };
38
39 const wchar_t* kExpectedValues[1][15] = {
40 // FileVersionInfoTest.dll
41 L"Goooooogle", // company_name
42 L"Google", // company_short_name
43 L"This is the product name", // product_name
44 L"This is the product short name", // product_short_name
45 L"The Internal Name", // internal_name
46 L"4.3.2.1", // product_version
47 L"Private build property", // private_build
48 L"Special build property", // special_build
49 L"This is a particularly interesting comment", // comments
50 L"This is the original filename", // original_filename
51 L"This is my file description", // file_description
52 L"1.2.3.4", // file_version
53 L"This is the legal copyright", // legal_copyright
54 L"This is the legal trademarks", // legal_trademarks
55 L"This is the last change", // last_change
initial.commit3f4a7322008-07-27 06:49:38 +090056 };
57
58 for (int i = 0; i < arraysize(kDLLNames); ++i) {
thestig@chromium.org8942e862009-09-10 05:00:13 +090059 FilePath dll_path = GetTestDataPath();
60 dll_path = dll_path.Append(kDLLNames[i]);
initial.commit3f4a7322008-07-27 06:49:38 +090061
62 scoped_ptr<FileVersionInfo> version_info(
63 FileVersionInfo::CreateFileVersionInfo(dll_path));
64
65 int j = 0;
66 EXPECT_EQ(kExpectedValues[i][j++], version_info->company_name());
67 EXPECT_EQ(kExpectedValues[i][j++], version_info->company_short_name());
68 EXPECT_EQ(kExpectedValues[i][j++], version_info->product_name());
69 EXPECT_EQ(kExpectedValues[i][j++], version_info->product_short_name());
70 EXPECT_EQ(kExpectedValues[i][j++], version_info->internal_name());
71 EXPECT_EQ(kExpectedValues[i][j++], version_info->product_version());
72 EXPECT_EQ(kExpectedValues[i][j++], version_info->private_build());
73 EXPECT_EQ(kExpectedValues[i][j++], version_info->special_build());
74 EXPECT_EQ(kExpectedValues[i][j++], version_info->comments());
75 EXPECT_EQ(kExpectedValues[i][j++], version_info->original_filename());
76 EXPECT_EQ(kExpectedValues[i][j++], version_info->file_description());
77 EXPECT_EQ(kExpectedValues[i][j++], version_info->file_version());
78 EXPECT_EQ(kExpectedValues[i][j++], version_info->legal_copyright());
79 EXPECT_EQ(kExpectedValues[i][j++], version_info->legal_trademarks());
80 EXPECT_EQ(kExpectedValues[i][j++], version_info->last_change());
81 }
82}
paulg@google.com9ea1e862008-08-06 05:00:26 +090083#endif
initial.commit3f4a7322008-07-27 06:49:38 +090084
tony@chromium.org9f7a86f2010-04-14 10:46:43 +090085#if defined(OS_WIN)
initial.commit3f4a7322008-07-27 06:49:38 +090086TEST(FileVersionInfoTest, IsOfficialBuild) {
87 const wchar_t* kDLLNames[] = {
88 L"FileVersionInfoTest1.dll",
89 L"FileVersionInfoTest2.dll"
90 };
91
92 const bool kExpected[] = {
93 true,
94 false,
95 };
96
97 // Test consistency check.
98 ASSERT_EQ(arraysize(kDLLNames), arraysize(kExpected));
99
100 for (int i = 0; i < arraysize(kDLLNames); ++i) {
thestig@chromium.org8942e862009-09-10 05:00:13 +0900101 FilePath dll_path = GetTestDataPath();
102 dll_path = dll_path.Append(kDLLNames[i]);
initial.commit3f4a7322008-07-27 06:49:38 +0900103
104 scoped_ptr<FileVersionInfo> version_info(
105 FileVersionInfo::CreateFileVersionInfo(dll_path));
106
107 EXPECT_EQ(kExpected[i], version_info->is_official_build());
108 }
109}
paulg@google.com9ea1e862008-08-06 05:00:26 +0900110#endif
initial.commit3f4a7322008-07-27 06:49:38 +0900111
tony@chromium.org9f7a86f2010-04-14 10:46:43 +0900112#if defined(OS_WIN)
initial.commit3f4a7322008-07-27 06:49:38 +0900113TEST(FileVersionInfoTest, CustomProperties) {
thestig@chromium.org8942e862009-09-10 05:00:13 +0900114 FilePath dll_path = GetTestDataPath();
115 dll_path = dll_path.AppendASCII("FileVersionInfoTest1.dll");
initial.commit3f4a7322008-07-27 06:49:38 +0900116
117 scoped_ptr<FileVersionInfo> version_info(
118 FileVersionInfo::CreateFileVersionInfo(dll_path));
119
120 // Test few existing properties.
121 std::wstring str;
tony@chromium.org9f7a86f2010-04-14 10:46:43 +0900122 FileVersionInfoWin* version_info_win =
123 static_cast<FileVersionInfoWin*>(version_info.get());
124 EXPECT_TRUE(version_info_win->GetValue(L"Custom prop 1", &str));
initial.commit3f4a7322008-07-27 06:49:38 +0900125 EXPECT_EQ(L"Un", str);
tony@chromium.org9f7a86f2010-04-14 10:46:43 +0900126 EXPECT_EQ(L"Un", version_info_win->GetStringValue(L"Custom prop 1"));
initial.commit3f4a7322008-07-27 06:49:38 +0900127
tony@chromium.org9f7a86f2010-04-14 10:46:43 +0900128 EXPECT_TRUE(version_info_win->GetValue(L"Custom prop 2", &str));
initial.commit3f4a7322008-07-27 06:49:38 +0900129 EXPECT_EQ(L"Deux", str);
tony@chromium.org9f7a86f2010-04-14 10:46:43 +0900130 EXPECT_EQ(L"Deux", version_info_win->GetStringValue(L"Custom prop 2"));
initial.commit3f4a7322008-07-27 06:49:38 +0900131
tony@chromium.org9f7a86f2010-04-14 10:46:43 +0900132 EXPECT_TRUE(version_info_win->GetValue(L"Custom prop 3", &str));
initial.commit3f4a7322008-07-27 06:49:38 +0900133 EXPECT_EQ(L"1600 Amphitheatre Parkway Mountain View, CA 94043", str);
134 EXPECT_EQ(L"1600 Amphitheatre Parkway Mountain View, CA 94043",
tony@chromium.org9f7a86f2010-04-14 10:46:43 +0900135 version_info_win->GetStringValue(L"Custom prop 3"));
initial.commit3f4a7322008-07-27 06:49:38 +0900136
137 // Test an non-existing property.
tony@chromium.org9f7a86f2010-04-14 10:46:43 +0900138 EXPECT_FALSE(version_info_win->GetValue(L"Unknown property", &str));
139 EXPECT_EQ(L"", version_info_win->GetStringValue(L"Unknown property"));
initial.commit3f4a7322008-07-27 06:49:38 +0900140}
tony@chromium.org9f7a86f2010-04-14 10:46:43 +0900141#endif