From 50bcabb0717dae7c8411db59115c41b7cc636cb3 Mon Sep 17 00:00:00 2001 From: Maksim Denisov Date: Wed, 28 Aug 2024 14:43:23 +0200 Subject: Replace ArtifactDigest::CreateFromFile ...with ArtifactDigestFactory::HashFileAs --- test/buildtool/storage/TARGETS | 1 + test/buildtool/storage/local_cas.test.cpp | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/buildtool/storage/TARGETS b/test/buildtool/storage/TARGETS index c61cde66..b5d88715 100644 --- a/test/buildtool/storage/TARGETS +++ b/test/buildtool/storage/TARGETS @@ -18,6 +18,7 @@ , ["", "catch-main"] , ["utils", "test_storage_config"] , ["@", "src", "src/buildtool/common", "common"] + , ["@", "src", "src/buildtool/common", "artifact_digest_factory"] , ["@", "src", "src/buildtool/file_system", "file_system_manager"] , ["@", "src", "src/buildtool/file_system", "object_type"] , ["@", "src", "src/buildtool/execution_api/bazel_msg", "bazel_msg"] diff --git a/test/buildtool/storage/local_cas.test.cpp b/test/buildtool/storage/local_cas.test.cpp index 4b7c844a..44371fea 100644 --- a/test/buildtool/storage/local_cas.test.cpp +++ b/test/buildtool/storage/local_cas.test.cpp @@ -17,6 +17,7 @@ #include "catch2/catch_test_macros.hpp" #include "src/buildtool/common/artifact_digest.hpp" +#include "src/buildtool/common/artifact_digest_factory.hpp" #include "src/buildtool/execution_api/bazel_msg/bazel_blob_container.hpp" #include "src/buildtool/file_system/file_system_manager.hpp" #include "src/buildtool/file_system/object_type.hpp" @@ -82,7 +83,7 @@ TEST_CASE("LocalCAS: Add blob to storage from non-executable file", std::filesystem::path non_exec_file{ "test/buildtool/storage/data/non_executable_file"}; - auto test_blob = ArtifactDigest::CreateFromFile( + auto test_blob = ArtifactDigestFactory::HashFileAs( storage_config.Get().hash_function, non_exec_file); REQUIRE(test_blob); @@ -133,7 +134,7 @@ TEST_CASE("LocalCAS: Add blob to storage from executable file", "[storage]") { std::filesystem::path exec_file{ "test/buildtool/storage/data/executable_file"}; - auto test_blob = ArtifactDigest::CreateFromFile( + auto test_blob = ArtifactDigestFactory::HashFileAs( storage_config.Get().hash_function, exec_file); REQUIRE(test_blob); -- cgit v1.2.3