blob: bea89701e3632e28266bc5836383a704f9b39ee2 (
plain)
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
|
// Copyright (c) 2010 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 "chrome/browser/cocoa/applescript/bookmark_applescript_utils_unittest.h"
#include "chrome/browser/bookmarks/bookmark_model.h"
@implementation FakeAppDelegate
@synthesize helper = helper_;
- (Profile*)defaultProfile {
if (!helper_)
return NULL;
return helper_->profile();
}
@end
// Represents the current fake command that is executing.
static FakeScriptCommand* kFakeCurrentCommand;
@implementation FakeScriptCommand
- (id)init {
if ((self = [super init])) {
originalMethod_ = class_getClassMethod([NSScriptCommand class],
@selector(currentCommand));
alternateMethod_ = class_getClassMethod([self class],
@selector(currentCommand));
method_exchangeImplementations(originalMethod_, alternateMethod_);
kFakeCurrentCommand = self;
}
return self;
}
+ (NSScriptCommand*)currentCommand {
return kFakeCurrentCommand;
}
- (void)dealloc {
method_exchangeImplementations(originalMethod_, alternateMethod_);
kFakeCurrentCommand = nil;
[super dealloc];
}
@end
BookmarkAppleScriptTest::BookmarkAppleScriptTest() {
appDelegate_.reset([[FakeAppDelegate alloc] init]);
[appDelegate_.get() setHelper:&helper_];
[NSApp setDelegate:appDelegate_];
const BookmarkNode* root = model().GetBookmarkBarNode();
const std::string modelString("a f1:[ b d c ] d f2:[ e f g ] h ");
model_test_utils::AddNodesFromModelString(model(), root, modelString);
bookmarkBar_.reset([[BookmarkFolderAppleScript alloc]
initWithBookmarkNode:model().GetBookmarkBarNode()]);
}
BookmarkModel& BookmarkAppleScriptTest::model() {
return *helper_.profile()->GetBookmarkModel();
}
|