/** * 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. */ #ifndef LIBHDFSPP_TOOLS_HDFS_CHMOD_MOCK #define LIBHDFSPP_TOOLS_HDFS_CHMOD_MOCK #include #include #include #include #include #include "hdfs-chmod.h" namespace hdfs::tools::test { /** * {@class ChmodMock} is an {@class Chmod} whereby it mocks the * HandleHelp and HandlePath methods for testing their functionality. */ class ChmodMock : public hdfs::tools::Chmod { public: /** * {@inheritdoc} */ ChmodMock(const int argc, char **argv) : Chmod(argc, argv) {} // Abiding to the Rule of 5 ChmodMock(const ChmodMock &) = delete; ChmodMock(ChmodMock &&) = delete; ChmodMock &operator=(const ChmodMock &) = delete; ChmodMock &operator=(ChmodMock &&) = delete; ~ChmodMock() override; /** * Defines the methods and the corresponding arguments that are expected * to be called on this instance of {@link HdfsTool} for the given test case. * * @param test_case An {@link std::function} object that points to the * function defining the test case * @param args The arguments that are passed to this test case */ void SetExpectations(std::function()> test_case, const std::vector &args = {}) const; MOCK_METHOD(bool, HandleHelp, (), (const, override)); MOCK_METHOD(bool, HandlePath, (const std::string &, bool, const std::string &), (const, override)); }; } // namespace hdfs::tools::test #endif