blob: 1ee7d4c37974e23fafbd6c559deb9a0753d59e8a [file] [log] [blame]
// Copyright (c) 2012 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/ui/cocoa/applescript/bookmark_applescript_utils_test.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/test/base/testing_profile.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/bookmarks/test/bookmark_test_helpers.h"
using bookmarks::BookmarkModel;
using bookmarks::BookmarkNode;
// Represents the current fake command that is executing.
static FakeScriptCommand* kFakeCurrentCommand;
@implementation FakeScriptCommand
- (instancetype)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() {
}
BookmarkAppleScriptTest::~BookmarkAppleScriptTest() {
}
void BookmarkAppleScriptTest::SetUpOnMainThread() {
ASSERT_TRUE(profile());
BookmarkModel* model = BookmarkModelFactory::GetForBrowserContext(profile());
const BookmarkNode* root = model->bookmark_bar_node();
const std::string modelString("a f1:[ b d c ] d f2:[ e f g ] h ");
bookmarks::test::AddNodesFromModelString(model, root, modelString);
bookmarkBar_.reset([[BookmarkFolderAppleScript alloc]
initWithBookmarkNode:model->bookmark_bar_node()]);
}
Profile* BookmarkAppleScriptTest::profile() const {
return browser()->profile();
}