blob: 51ae4f90fd18e27ac96da6bae8ab2f4e1f615cb8 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "tests/containerizer/launcher.hpp"
namespace mesos {
namespace internal {
namespace tests {
ACTION_P(InvokeRecover, launcher)
{
return launcher->real->recover(arg0);
}
ACTION_P(InvokeFork, launcher)
{
return launcher->real->fork(
arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
}
ACTION_P(InvokeDestroy, launcher)
{
return launcher->real->destroy(arg0);
}
TestLauncher::TestLauncher(const process::Owned<slave::Launcher>& _real)
: real(_real)
{
using testing::_;
using testing::DoDefault;
ON_CALL(*this, recover(_))
.WillByDefault(InvokeRecover(this));
EXPECT_CALL(*this, recover(_))
.WillRepeatedly(DoDefault());
ON_CALL(*this, fork(_, _, _, _, _, _, _, _, _))
.WillByDefault(InvokeFork(this));
EXPECT_CALL(*this, fork(_, _, _, _, _, _, _, _, _))
.WillRepeatedly(DoDefault());
ON_CALL(*this, destroy(_))
.WillByDefault(InvokeDestroy(this));
EXPECT_CALL(*this, destroy(_))
.WillRepeatedly(DoDefault());
}
TestLauncher::~TestLauncher() {}
} // namespace tests {
} // namespace internal {
} // namespace mesos {