Home
last modified time | relevance | path

Searched refs:GetBuildArtifactsPath (Results 1 – 14 of 14) sorted by relevance

/system/update_engine/payload_generator/
Dpayload_signer_unittest.cc34 using chromeos_update_engine::test_utils::GetBuildArtifactsPath;
114 SignSampleData(&signature, {GetBuildArtifactsPath(kUnittestPrivateKeyPath)}); in TEST_F()
131 {GetBuildArtifactsPath(kUnittestPrivateKeyPath), in TEST_F()
132 GetBuildArtifactsPath(kUnittestPrivateKey2Path), in TEST_F()
133 GetBuildArtifactsPath(kUnittestPrivateKeyRSA4096Path), in TEST_F()
134 GetBuildArtifactsPath(kUnittestPrivateKeyECPath)}); in TEST_F()
142 EXPECT_TRUE(utils::ReadFile(GetBuildArtifactsPath(path), &public_key)); in TEST_F()
151 SignSampleData(&signature, {GetBuildArtifactsPath(kUnittestPrivateKeyPath)}); in TEST_F()
154 EXPECT_TRUE(utils::ReadFile(GetBuildArtifactsPath(kUnittestPublicKeyPath), in TEST_F()
162 EXPECT_TRUE(utils::ReadFile(GetBuildArtifactsPath(kUnittestPublicKey2Path), in TEST_F()
[all …]
Dext2_filesystem_unittest.cc37 using chromeos_update_engine::test_utils::GetBuildArtifactsPath;
77 GetBuildArtifactsPath("gen/disk_ext2_4k_empty.img")); in TEST_F()
103 base::FilePath build_path = GetBuildArtifactsPath().Append("gen"); in TEST_F()
189 GetBuildArtifactsPath("gen/disk_ext2_1k.img")); in TEST_F()
199 GetBuildArtifactsPath("gen/disk_ext2_unittest.img")); in TEST_F()
Dsquashfs_filesystem_unittest.cc46 using test_utils::GetBuildArtifactsPath;
115 GetBuildArtifactsPath("gen/disk_sqfs_empty.img"), true, false); in TEST_F()
136 GetBuildArtifactsPath("gen/disk_sqfs_default.img"), true, false); in TEST_F()
154 GetBuildArtifactsPath("gen/disk_sqfs_unittest.img"), true, true); in TEST_F()
Dzip_unittest.cc166 string path = test_utils::GetBuildArtifactsPath("delta_generator"); in TYPED_TEST()
Ddelta_diff_utils_unittest.cc554 test_utils::GetBuildArtifactsPath("gen/disk_ext2_1k.img"))); in TEST_F()
556 test_utils::GetBuildArtifactsPath("gen/disk_ext2_4k.img"))); in TEST_F()
/system/update_engine/payload_consumer/
Dcertificate_parser_android_unittest.cc37 test_utils::GetBuildArtifactsPath(kUnittestOtacertsPath); in TEST()
52 test_utils::GetBuildArtifactsPath(kUnittestPrivateKeyPath), in TEST()
56 test_utils::GetBuildArtifactsPath(kUnittestOtacertsPath)); in TEST()
Ddelta_performer_integration_test.cc54 using test_utils::GetBuildArtifactsPath;
189 string private_key_path = GetBuildArtifactsPath(kUnittestPrivateKeyPath); in SignGeneratedPayload()
208 payload_path, GetBuildArtifactsPath(kUnittestPublicKeyPath))); in SignGeneratedPayload()
227 string delta_generator_path = GetBuildArtifactsPath("delta_generator"); in SignGeneratedShellPayloadWithKeys()
309 private_key_path = GetBuildArtifactsPath(kUnittestPrivateKeyECPath); in SignGeneratedShellPayload()
311 private_key_path = GetBuildArtifactsPath(kUnittestPrivateKeyPath); in SignGeneratedShellPayload()
340 GetBuildArtifactsPath(kUnittestPrivateKey2Path)); in SignGeneratedShellPayload()
345 public_key = GetBuildArtifactsPath(kUnittestPublicKey2Path); in SignGeneratedShellPayload()
347 public_key = GetBuildArtifactsPath(kUnittestPublicKeyECPath); in SignGeneratedShellPayload()
349 public_key = GetBuildArtifactsPath(kUnittestPublicKeyPath); in SignGeneratedShellPayload()
[all …]
Ddelta_performer_unittest.cc58 using test_utils::GetBuildArtifactsPath;
166 string public_key_path = GetBuildArtifactsPath(kUnittestPublicKeyPath); in SetUp()
239 sign_payload ? GetBuildArtifactsPath(kUnittestPrivateKeyPath) : ""; in GeneratePayload()
392 GetBuildArtifactsPath(kUnittestPrivateKeyPath), in DoMetadataSignatureTest()
1148 EXPECT_TRUE(store.Load(GetBuildArtifactsPath().Append("update_engine.conf"))); in TEST_F()
Dpostinstall_runner_action_unittest.cc94 test_utils::GetBuildArtifactsPath("gen/disk_ext2_unittest.img"); in SetUp()
/system/update_engine/common/
Dtest_utils.cc254 base::FilePath GetBuildArtifactsPath() { in GetBuildArtifactsPath() function
260 string GetBuildArtifactsPath(const string& relative_path) { in GetBuildArtifactsPath() function
261 return GetBuildArtifactsPath().Append(relative_path).value(); in GetBuildArtifactsPath()
Dtest_utils.h175 base::FilePath GetBuildArtifactsPath();
177 std::string GetBuildArtifactsPath(const std::string& relative_path);
Dsubprocess_unittest.cc182 test_utils::GetBuildArtifactsPath("test_subprocess"), in TEST_F()
Dutils_unittest.cc397 test_utils::GetBuildArtifactsPath().Append("gen/disk_ext2_4k.img"), in TEST()
Dhttp_fetcher_unittest.cc115 http_server->AddArg(test_utils::GetBuildArtifactsPath("test_http_server")); in PythonHttpServer()