root/chromeos/cryptohome/mock_homedir_methods.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. return_code_
  2. SetUp
  3. DoCallback
  4. DoMountCallback

// Copyright 2014 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.

#include "chromeos/cryptohome/mock_homedir_methods.h"

#include "chromeos/cryptohome/mock_async_method_caller.h"

using ::testing::Invoke;
using ::testing::WithArgs;
using ::testing::_;

namespace cryptohome {

MockHomedirMethods::MockHomedirMethods()
    : success_(false), return_code_(cryptohome::MOUNT_ERROR_NONE) {}

MockHomedirMethods::~MockHomedirMethods() {}

void MockHomedirMethods::SetUp(bool success, MountError return_code) {
  success_ = success;
  return_code_ = return_code;
  ON_CALL(*this, CheckKeyEx(_, _, _)).WillByDefault(
      WithArgs<2>(Invoke(this, &MockHomedirMethods::DoCallback)));
  ON_CALL(*this, MountEx(_, _, _, _)).WillByDefault(
      WithArgs<3>(Invoke(this, &MockHomedirMethods::DoMountCallback)));
  ON_CALL(*this, AddKeyEx(_, _, _, _, _)).WillByDefault(
      WithArgs<4>(Invoke(this, &MockHomedirMethods::DoCallback)));
  ON_CALL(*this, UpdateKeyEx(_, _, _, _, _)).WillByDefault(
      WithArgs<4>(Invoke(this, &MockHomedirMethods::DoCallback)));
  ON_CALL(*this, RemoveKeyEx(_, _, _, _)).WillByDefault(
      WithArgs<3>(Invoke(this, &MockHomedirMethods::DoCallback)));
}

void MockHomedirMethods::DoCallback(const Callback& callback) {
  callback.Run(success_, return_code_);
}

void MockHomedirMethods::DoMountCallback(const MountCallback& callback) {
  callback.Run(
      success_, return_code_, MockAsyncMethodCaller::kFakeSanitizedUsername);
}

}  // namespace cryptohome

/* [<][>][^][v][top][bottom][index][help] */