Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ add_executable(hdfs_tool_tests
hdfs-count-mock.cc
hdfs-mkdir-mock.cc
hdfs-rm-mock.cc
hdfs-get-mock.cc
main.cc)
target_include_directories(hdfs_tool_tests PRIVATE
../tools
Expand All @@ -54,6 +55,7 @@ target_include_directories(hdfs_tool_tests PRIVATE
../../tools/hdfs-count
../../tools/hdfs-mkdir
../../tools/hdfs-rm
../../tools/hdfs-get
../../tools/hdfs-cat)
target_link_libraries(hdfs_tool_tests PRIVATE
gmock_main
Expand All @@ -72,5 +74,6 @@ target_link_libraries(hdfs_tool_tests PRIVATE
hdfs_count_lib
hdfs_mkdir_lib
hdfs_rm_lib
hdfs_get_lib
hdfs_cat_lib)
add_test(hdfs_tool_tests hdfs_tool_tests)
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/**
* 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 <functional>
#include <memory>
#include <string>
#include <vector>

#include <gmock/gmock.h>
#include <gtest/gtest.h>

#include "hdfs-get-mock.h"
#include "hdfs-tool-tests.h"

namespace hdfs::tools::test {
GetMock::~GetMock() = default;

void GetMock::SetExpectations(
std::function<std::unique_ptr<GetMock>()> test_case,
const std::vector<std::string> &args) const {
// Get the pointer to the function that defines the test case
const auto test_case_func =
test_case.target<std::unique_ptr<GetMock> (*)()>();
ASSERT_NE(test_case_func, nullptr);

// Set the expected method calls and their corresponding arguments for each
// test case
if (*test_case_func == &CallHelp<GetMock>) {
EXPECT_CALL(*this, HandleHelp()).Times(1).WillOnce(testing::Return(true));
return;
}

if (*test_case_func == &Pass2Paths<GetMock>) {
const auto arg1 = args[0];
const auto arg2 = args[1];
EXPECT_CALL(*this, HandlePath(arg1, arg2))
.Times(1)
.WillOnce(testing::Return(true));
}
}
} // namespace hdfs::tools::test
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
/**
* 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_GET_MOCK
#define LIBHDFSPP_TOOLS_HDFS_GET_MOCK

#include <functional>
#include <memory>
#include <string>
#include <vector>

#include <gmock/gmock.h>

#include "hdfs-get.h"

namespace hdfs::tools::test {
/**
* {@class GetMock} is an {@class Get} whereby it mocks the
* HandleHelp and HandlePath methods for testing their functionality.
*/
class GetMock : public hdfs::tools::Get {
public:
/**
* {@inheritdoc}
*/
GetMock(const int argc, char **argv) : Get(argc, argv) {}

// Abiding to the Rule of 5
GetMock(const GetMock &) = delete;
GetMock(GetMock &&) = delete;
GetMock &operator=(const GetMock &) = delete;
GetMock &operator=(GetMock &&) = delete;
~GetMock() 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<std::unique_ptr<GetMock>()> test_case,
const std::vector<std::string> &args = {}) const;

MOCK_METHOD(bool, HandleHelp, (), (const, override));

MOCK_METHOD(bool, HandlePath, (const std::string &, const std::string &),
(const, override));
};
} // namespace hdfs::tools::test

#endif
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include "hdfs-df-mock.h"
#include "hdfs-disallow-snapshot-mock.h"
#include "hdfs-du-mock.h"
#include "hdfs-get-mock.h"
#include "hdfs-mkdir-mock.h"
#include "hdfs-move-to-local-mock.h"
#include "hdfs-rename-snapshot-mock.h"
Expand Down Expand Up @@ -108,6 +109,11 @@ INSTANTIATE_TEST_SUITE_P(
testing::Values(CallHelp<hdfs::tools::test::CopyToLocalMock>,
Pass2Paths<hdfs::tools::test::CopyToLocalMock>));

INSTANTIATE_TEST_SUITE_P(
HdfsGet, HdfsToolBasicTest,
testing::Values(CallHelp<hdfs::tools::test::GetMock>,
Pass2Paths<hdfs::tools::test::GetMock>));

INSTANTIATE_TEST_SUITE_P(
HdfsMoveToLocal, HdfsToolBasicTest,
testing::Values(CallHelp<hdfs::tools::test::MoveToLocalMock>,
Expand Down Expand Up @@ -173,6 +179,10 @@ INSTANTIATE_TEST_SUITE_P(
HdfsCopyToLocal, HdfsToolNegativeTestThrows,
testing::Values(Pass3Paths<hdfs::tools::test::CopyToLocalMock>));

INSTANTIATE_TEST_SUITE_P(
HdfsGet, HdfsToolNegativeTestThrows,
testing::Values(Pass3Paths<hdfs::tools::test::GetMock>));

INSTANTIATE_TEST_SUITE_P(
HdfsMoveToLocal, HdfsToolNegativeTestThrows,
testing::Values(Pass3Paths<hdfs::tools::test::MoveToLocalMock>));
Expand Down Expand Up @@ -220,6 +230,10 @@ INSTANTIATE_TEST_SUITE_P(
HdfsCopyToLocal, HdfsToolNegativeTestNoThrow,
testing::Values(PassAPath<hdfs::tools::test::CopyToLocalMock>));

INSTANTIATE_TEST_SUITE_P(
HdfsGet, HdfsToolNegativeTestNoThrow,
testing::Values(PassAPath<hdfs::tools::test::GetMock>));

INSTANTIATE_TEST_SUITE_P(
HdfsDeleteSnapshot, HdfsToolNegativeTestNoThrow,
testing::Values(PassAPath<hdfs::tools::test::DeleteSnapshotMock>));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ add_subdirectory(hdfs-df)

add_subdirectory(hdfs-du)

add_executable(hdfs_get hdfs_get.cc)
target_link_libraries(hdfs_get tools_common hdfspp_static)
add_subdirectory(hdfs-get)

add_subdirectory(hdfs-copy-to-local)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,24 +64,28 @@ bool CopyToLocal::ValidateConstraints() const {

std::string CopyToLocal::GetDescription() const {
std::stringstream desc;
desc << "Usage: hdfs_copyToLocal [OPTION] SRC_FILE DST_FILE" << std::endl
desc << "Usage: hdfs_" << GetToolName() << " [OPTION] SRC_FILE DST_FILE"
<< std::endl
<< std::endl
<< "Copy SRC_FILE from hdfs to DST_FILE on the local file system."
<< std::endl
<< std::endl
<< " -h display this help and exit" << std::endl
<< std::endl
<< "Examples:" << std::endl
<< "hdfs_copyToLocal hdfs://localhost.localdomain:8020/dir/file "
<< "hdfs_" << GetToolName()
<< " hdfs://localhost.localdomain:8020/dir/file "
"/home/usr/myfile"
<< std::endl
<< "hdfs_copyToLocal /dir/file /home/usr/dir/file" << std::endl;
<< "hdfs_" << GetToolName() << " /dir/file /home/usr/dir/file"
<< std::endl;
return desc.str();
}

bool CopyToLocal::Do() {
if (!Initialize()) {
std::cerr << "Unable to initialize HDFS copyToLocal tool" << std::endl;
std::cerr << "Unable to initialize HDFS " << GetToolName() << " tool"
<< std::endl;
return false;
}

Expand Down Expand Up @@ -129,4 +133,6 @@ bool CopyToLocal::HandlePath(const std::string &source,
std::fclose(dst_file);
return true;
}

std::string CopyToLocal::GetToolName() const { return "copyToLocal"; }
} // namespace hdfs::tools
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ class CopyToLocal : public HdfsTool {
[[nodiscard]] virtual bool HandlePath(const std::string &source,
const std::string &target) const;

/**
* @return The name of the tool.
*/
[[nodiscard]] virtual std::string GetToolName() const;

private:
/**
* A boost data-structure containing the description of positional arguments
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#
# 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.
#

add_library(hdfs_get_lib STATIC $<TARGET_OBJECTS:hdfs_tool_obj> hdfs-get.cc)
target_include_directories(hdfs_get_lib PRIVATE ../../tools hdfs-get ${Boost_INCLUDE_DIRS})
target_link_libraries(hdfs_get_lib PRIVATE Boost::boost Boost::program_options tools_common hdfspp_static hdfs_copyToLocal_lib)

add_executable(hdfs_get main.cc)
target_include_directories(hdfs_get PRIVATE ../../tools)
target_link_libraries(hdfs_get PRIVATE hdfs_get_lib)

install(TARGETS hdfs_get RUNTIME DESTINATION bin)
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* 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 "hdfs-get.h"

namespace hdfs::tools {
Get::Get(const int argc, char **argv) : CopyToLocal(argc, argv) {}

std::string Get::GetToolName() const { return "get"; }
} // namespace hdfs::tools
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/**
* 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_GET
#define LIBHDFSPP_TOOLS_HDFS_GET

#include "hdfs-copy-to-local/hdfs-copy-to-local.h"

namespace hdfs::tools {
class Get : public CopyToLocal {
public:
/**
* {@inheritdoc}
*/
Get(int argc, char **argv);

// Abiding to the Rule of 5
Get(const Get &) = default;
Get(Get &&) = default;
Get &operator=(const Get &) = delete;
Get &operator=(Get &&) = delete;
~Get() override = default;

protected:
/**
* {@inheritdoc}
*/
[[nodiscard]] std::string GetToolName() const override;
};
} // namespace hdfs::tools

#endif
Loading