| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <algorithm> | 5 #include <algorithm> |
| 6 #include <sstream> | 6 #include <sstream> |
| 7 | 7 |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 #include "tools/gn/ninja_copy_target_writer.h" | 9 #include "tools/gn/ninja_copy_target_writer.h" |
| 10 #include "tools/gn/target.h" | 10 #include "tools/gn/target.h" |
| 11 #include "tools/gn/test_with_scope.h" | 11 #include "tools/gn/test_with_scope.h" |
| 12 | 12 |
| 13 // Tests multiple files with an output pattern and no toolchain dependency. | 13 // Tests multiple files with an output pattern and no toolchain dependency. |
| 14 TEST(NinjaCopyTargetWriter, Run) { | 14 TEST(NinjaCopyTargetWriter, Run) { |
| 15 TestWithScope setup; | 15 TestWithScope setup; |
| 16 Err err; | 16 Err err; |
| 17 | 17 |
| 18 setup.settings()->set_target_os(Settings::LINUX); | |
| 19 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/")); | 18 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/")); |
| 20 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); | 19 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); |
| 21 target.set_output_type(Target::COPY_FILES); | 20 target.set_output_type(Target::COPY_FILES); |
| 22 | 21 |
| 23 target.sources().push_back(SourceFile("//foo/input1.txt")); | 22 target.sources().push_back(SourceFile("//foo/input1.txt")); |
| 24 target.sources().push_back(SourceFile("//foo/input2.txt")); | 23 target.sources().push_back(SourceFile("//foo/input2.txt")); |
| 25 | 24 |
| 26 target.action_values().outputs() = | 25 target.action_values().outputs() = |
| 27 SubstitutionList::MakeForTest("//out/Debug/{{source_name_part}}.out"); | 26 SubstitutionList::MakeForTest("//out/Debug/{{source_name_part}}.out"); |
| 28 | 27 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 40 "build obj/foo/bar.stamp: stamp input1.out input2.out\n"; | 39 "build obj/foo/bar.stamp: stamp input1.out input2.out\n"; |
| 41 std::string out_str = out.str(); | 40 std::string out_str = out.str(); |
| 42 EXPECT_EQ(expected_linux, out_str); | 41 EXPECT_EQ(expected_linux, out_str); |
| 43 } | 42 } |
| 44 | 43 |
| 45 // Tests a single file with no output pattern. | 44 // Tests a single file with no output pattern. |
| 46 TEST(NinjaCopyTargetWriter, ToolchainDeps) { | 45 TEST(NinjaCopyTargetWriter, ToolchainDeps) { |
| 47 TestWithScope setup; | 46 TestWithScope setup; |
| 48 Err err; | 47 Err err; |
| 49 | 48 |
| 50 setup.settings()->set_target_os(Settings::LINUX); | |
| 51 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/")); | 49 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/")); |
| 52 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); | 50 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); |
| 53 target.set_output_type(Target::COPY_FILES); | 51 target.set_output_type(Target::COPY_FILES); |
| 54 | 52 |
| 55 target.sources().push_back(SourceFile("//foo/input1.txt")); | 53 target.sources().push_back(SourceFile("//foo/input1.txt")); |
| 56 | 54 |
| 57 target.action_values().outputs() = | 55 target.action_values().outputs() = |
| 58 SubstitutionList::MakeForTest("//out/Debug/output.out"); | 56 SubstitutionList::MakeForTest("//out/Debug/output.out"); |
| 59 | 57 |
| 60 target.SetToolchain(setup.toolchain()); | 58 target.SetToolchain(setup.toolchain()); |
| 61 ASSERT_TRUE(target.OnResolved(&err)); | 59 ASSERT_TRUE(target.OnResolved(&err)); |
| 62 | 60 |
| 63 std::ostringstream out; | 61 std::ostringstream out; |
| 64 NinjaCopyTargetWriter writer(&target, out); | 62 NinjaCopyTargetWriter writer(&target, out); |
| 65 writer.Run(); | 63 writer.Run(); |
| 66 | 64 |
| 67 const char expected_linux[] = | 65 const char expected_linux[] = |
| 68 "build output.out: copy ../../foo/input1.txt\n" | 66 "build output.out: copy ../../foo/input1.txt\n" |
| 69 "\n" | 67 "\n" |
| 70 "build obj/foo/bar.stamp: stamp output.out\n"; | 68 "build obj/foo/bar.stamp: stamp output.out\n"; |
| 71 std::string out_str = out.str(); | 69 std::string out_str = out.str(); |
| 72 EXPECT_EQ(expected_linux, out_str); | 70 EXPECT_EQ(expected_linux, out_str); |
| 73 } | 71 } |
| 74 | 72 |
| 75 TEST(NinjaCopyTargetWriter, OrderOnlyDeps) { | 73 TEST(NinjaCopyTargetWriter, OrderOnlyDeps) { |
| 76 TestWithScope setup; | 74 TestWithScope setup; |
| 77 Err err; | 75 Err err; |
| 78 | 76 |
| 79 setup.settings()->set_target_os(Settings::LINUX); | |
| 80 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/")); | 77 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/")); |
| 81 | 78 |
| 82 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); | 79 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); |
| 83 target.set_output_type(Target::COPY_FILES); | 80 target.set_output_type(Target::COPY_FILES); |
| 84 target.sources().push_back(SourceFile("//foo/input1.txt")); | 81 target.sources().push_back(SourceFile("//foo/input1.txt")); |
| 85 target.action_values().outputs() = | 82 target.action_values().outputs() = |
| 86 SubstitutionList::MakeForTest("//out/Debug/{{source_name_part}}.out"); | 83 SubstitutionList::MakeForTest("//out/Debug/{{source_name_part}}.out"); |
| 87 target.inputs().push_back(SourceFile("//foo/script.py")); | 84 target.inputs().push_back(SourceFile("//foo/script.py")); |
| 88 target.SetToolchain(setup.toolchain()); | 85 target.SetToolchain(setup.toolchain()); |
| 89 ASSERT_TRUE(target.OnResolved(&err)); | 86 ASSERT_TRUE(target.OnResolved(&err)); |
| 90 | 87 |
| 91 std::ostringstream out; | 88 std::ostringstream out; |
| 92 NinjaCopyTargetWriter writer(&target, out); | 89 NinjaCopyTargetWriter writer(&target, out); |
| 93 writer.Run(); | 90 writer.Run(); |
| 94 | 91 |
| 95 const char expected_linux[] = | 92 const char expected_linux[] = |
| 96 "build obj/foo/bar.inputdeps.stamp: stamp ../../foo/script.py\n" | 93 "build obj/foo/bar.inputdeps.stamp: stamp ../../foo/script.py\n" |
| 97 "build input1.out: copy ../../foo/input1.txt || " | 94 "build input1.out: copy ../../foo/input1.txt || " |
| 98 "obj/foo/bar.inputdeps.stamp\n" | 95 "obj/foo/bar.inputdeps.stamp\n" |
| 99 "\n" | 96 "\n" |
| 100 "build obj/foo/bar.stamp: stamp input1.out\n"; | 97 "build obj/foo/bar.stamp: stamp input1.out\n"; |
| 101 std::string out_str = out.str(); | 98 std::string out_str = out.str(); |
| 102 EXPECT_EQ(expected_linux, out_str); | 99 EXPECT_EQ(expected_linux, out_str); |
| 103 } | 100 } |
| OLD | NEW |