| OLD | NEW |
| (Empty) |
| 1 // Copyright 2007-2009 Google Inc. | |
| 2 // | |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 // you may not use this file except in compliance with the License. | |
| 5 // You may obtain a copy of the License at | |
| 6 // | |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | |
| 8 // | |
| 9 // Unless required by applicable law or agreed to in writing, software | |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 12 // See the License for the specific language governing permissions and | |
| 13 // limitations under the License. | |
| 14 // ======================================================================== | |
| 15 // | |
| 16 // Unit test for module utility functions. | |
| 17 | |
| 18 #include "omaha/base/constants.h" | |
| 19 #include "omaha/base/module_utils.h" | |
| 20 #include "omaha/base/path.h" | |
| 21 #include "omaha/base/utils.h" | |
| 22 #include "omaha/testing/unit_test.h" | |
| 23 | |
| 24 namespace omaha { | |
| 25 | |
| 26 TEST(ModuleUtilsTest, ModuleUtils) { | |
| 27 // ModuleFromStatic | |
| 28 HMODULE module = ModuleFromStatic(reinterpret_cast<void*>(ModuleFromStatic)); | |
| 29 ASSERT_TRUE(module); | |
| 30 | |
| 31 // GetModuleDirectory | |
| 32 TCHAR directory1[MAX_PATH] = {0}; | |
| 33 TCHAR directory2[MAX_PATH] = {0}; | |
| 34 ASSERT_TRUE(GetModuleDirectory(module, directory1)); | |
| 35 ASSERT_TRUE(GetModuleDirectory(NULL, directory2)); | |
| 36 EXPECT_STREQ(directory1, directory2); | |
| 37 | |
| 38 // GetModuleFileName | |
| 39 CString path1; | |
| 40 CString path2; | |
| 41 ASSERT_SUCCEEDED(GetModuleFileName(module, &path1)); | |
| 42 ASSERT_SUCCEEDED(GetModuleFileName(NULL, &path2)); | |
| 43 EXPECT_STREQ(path1, path2); | |
| 44 | |
| 45 // Verify values, as much as we can. | |
| 46 CString file(GetFileFromPath(path1)); | |
| 47 EXPECT_STREQ(file, kUnittestName); | |
| 48 | |
| 49 CString dir(GetDirectoryFromPath(path1)); | |
| 50 EXPECT_STREQ(dir, directory1); | |
| 51 } | |
| 52 | |
| 53 } // namespace omaha | |
| OLD | NEW |