1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
// Copyright (c) 2008-2009 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.
#import <Cocoa/Cocoa.h>
#include <vector>
#include "base/mac_util.h"
#include "base/file_path.h"
#include "base/file_util.h"
#include "base/scoped_nsobject.h"
#include "base/scoped_ptr.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
typedef PlatformTest MacUtilTest;
TEST_F(MacUtilTest, TestFSRef) {
FSRef ref;
std::string path("/System/Library");
ASSERT_TRUE(mac_util::FSRefFromPath(path, &ref));
EXPECT_EQ(path, mac_util::PathFromFSRef(ref));
}
TEST_F(MacUtilTest, TestLibraryPath) {
FilePath library_dir = mac_util::GetUserLibraryPath();
// Make sure the string isn't empty.
EXPECT_FALSE(library_dir.value().empty());
}
TEST_F(MacUtilTest, TestGrabWindowSnapshot) {
// Launch a test window so we can take a snapshot.
[NSApplication sharedApplication];
NSRect frame = NSMakeRect(0, 0, 400, 400);
scoped_nsobject<NSWindow> window(
[[NSWindow alloc] initWithContentRect:frame
styleMask:NSBorderlessWindowMask
backing:NSBackingStoreBuffered
defer:NO]);
[window setBackgroundColor:[NSColor whiteColor]];
[window makeKeyAndOrderFront:NSApp];
scoped_ptr<std::vector<unsigned char> > png_representation(
new std::vector<unsigned char>);
mac_util::GrabWindowSnapshot(window, png_representation.get());
// Copy png back into NSData object so we can make sure we grabbed a png.
scoped_nsobject<NSData> image_data(
[[NSData alloc] initWithBytes:&(*png_representation)[0]
length:png_representation->size()]);
NSBitmapImageRep* rep = [NSBitmapImageRep imageRepWithData:image_data.get()];
EXPECT_TRUE([rep isKindOfClass:[NSBitmapImageRep class]]);
EXPECT_TRUE(CGImageGetWidth([rep CGImage]) == 400);
NSColor* color = [rep colorAtX:200 y:200];
CGFloat red = 0, green = 0, blue = 0, alpha = 0;
[color getRed:&red green:&green blue:&blue alpha:&alpha];
EXPECT_GE(red + green + blue, 3.0);
}
TEST_F(MacUtilTest, TestGetAppBundlePath) {
FilePath out;
// Make sure it doesn't crash.
out = mac_util::GetAppBundlePath(FilePath());
EXPECT_TRUE(out.empty());
// Some more invalid inputs.
const char* invalid_inputs[] = {
"/", "/foo", "foo", "/foo/bar.", "foo/bar.", "/foo/bar./bazquux",
"foo/bar./bazquux", "foo/.app", "//foo",
};
for (size_t i = 0; i < arraysize(invalid_inputs); i++) {
out = mac_util::GetAppBundlePath(FilePath(invalid_inputs[i]));
EXPECT_TRUE(out.empty()) << "loop: " << i;
}
// Some valid inputs; this and |expected_outputs| should be in sync.
struct {
const char *in;
const char *expected_out;
} valid_inputs[] = {
{ "FooBar.app/", "FooBar.app" },
{ "/FooBar.app", "/FooBar.app" },
{ "/FooBar.app/", "/FooBar.app" },
{ "//FooBar.app", "//FooBar.app" },
{ "/Foo/Bar.app", "/Foo/Bar.app" },
{ "/Foo/Bar.app/", "/Foo/Bar.app" },
{ "/F/B.app", "/F/B.app" },
{ "/F/B.app/", "/F/B.app" },
{ "/Foo/Bar.app/baz", "/Foo/Bar.app" },
{ "/Foo/Bar.app/baz/", "/Foo/Bar.app" },
{ "/Foo/Bar.app/baz/quux.app/quuux", "/Foo/Bar.app" },
{ "/Applications/Google Foo.app/bar/Foo Helper.app/quux/Foo Helper",
"/Applications/Google Foo.app" },
};
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(valid_inputs); i++) {
out = mac_util::GetAppBundlePath(FilePath(valid_inputs[i].in));
EXPECT_FALSE(out.empty()) << "loop: " << i;
EXPECT_STREQ(valid_inputs[i].expected_out,
out.value().c_str()) << "loop: " << i;
}
}
TEST_F(MacUtilTest, TestExcludeFileFromBackups) {
NSString* homeDirectory = NSHomeDirectory();
NSString* dummyFilePath =
[homeDirectory stringByAppendingPathComponent:@"DummyFile"];
const char* dummy_file_path = [dummyFilePath fileSystemRepresentation];
ASSERT_TRUE(dummy_file_path);
FilePath file_path(dummy_file_path);
// It is not actually necessary to have a physical file in order to
// set its exclusion property.
NSURL* fileURL = [NSURL URLWithString:dummyFilePath];
// Reset the exclusion in case it was set previously.
mac_util::SetFileBackupExclusion(file_path, false);
Boolean excludeByPath;
// Initial state should be non-excluded.
EXPECT_FALSE(CSBackupIsItemExcluded((CFURLRef)fileURL, &excludeByPath));
// Exclude the file.
EXPECT_TRUE(mac_util::SetFileBackupExclusion(file_path, true));
EXPECT_TRUE(CSBackupIsItemExcluded((CFURLRef)fileURL, &excludeByPath));
// Un-exclude the file.
EXPECT_TRUE(mac_util::SetFileBackupExclusion(file_path, false));
EXPECT_FALSE(CSBackupIsItemExcluded((CFURLRef)fileURL, &excludeByPath));
}
|