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 mutliple files with an output pattern and no toolchain dependency. | 13 // Tests mutliple 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 | 17 |
17 setup.settings()->set_target_os(Settings::LINUX); | 18 setup.settings()->set_target_os(Settings::LINUX); |
18 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/")); | 19 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/")); |
19 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); | 20 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); |
20 target.set_output_type(Target::COPY_FILES); | 21 target.set_output_type(Target::COPY_FILES); |
21 | 22 |
22 target.sources().push_back(SourceFile("//foo/input1.txt")); | 23 target.sources().push_back(SourceFile("//foo/input1.txt")); |
23 target.sources().push_back(SourceFile("//foo/input2.txt")); | 24 target.sources().push_back(SourceFile("//foo/input2.txt")); |
24 | 25 |
25 target.action_values().outputs() = | 26 target.action_values().outputs() = |
26 SubstitutionList::MakeForTest("//out/Debug/{{source_name_part}}.out"); | 27 SubstitutionList::MakeForTest("//out/Debug/{{source_name_part}}.out"); |
27 | 28 |
28 target.SetToolchain(setup.toolchain()); | 29 target.SetToolchain(setup.toolchain()); |
29 target.OnResolved(); | 30 ASSERT_TRUE(target.OnResolved(&err)); |
30 | 31 |
31 std::ostringstream out; | 32 std::ostringstream out; |
32 NinjaCopyTargetWriter writer(&target, out); | 33 NinjaCopyTargetWriter writer(&target, out); |
33 writer.Run(); | 34 writer.Run(); |
34 | 35 |
35 const char expected_linux[] = | 36 const char expected_linux[] = |
36 "build input1.out: copy ../../foo/input1.txt\n" | 37 "build input1.out: copy ../../foo/input1.txt\n" |
37 "build input2.out: copy ../../foo/input2.txt\n" | 38 "build input2.out: copy ../../foo/input2.txt\n" |
38 "\n" | 39 "\n" |
39 "build obj/foo/bar.stamp: stamp input1.out input2.out\n"; | 40 "build obj/foo/bar.stamp: stamp input1.out input2.out\n"; |
40 std::string out_str = out.str(); | 41 std::string out_str = out.str(); |
41 EXPECT_EQ(expected_linux, out_str); | 42 EXPECT_EQ(expected_linux, out_str); |
42 } | 43 } |
43 | 44 |
44 // Tests a single file with no output pattern. | 45 // Tests a single file with no output pattern. |
45 TEST(NinjaCopyTargetWriter, ToolchainDeps) { | 46 TEST(NinjaCopyTargetWriter, ToolchainDeps) { |
46 TestWithScope setup; | 47 TestWithScope setup; |
| 48 Err err; |
47 | 49 |
48 setup.settings()->set_target_os(Settings::LINUX); | 50 setup.settings()->set_target_os(Settings::LINUX); |
49 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/")); | 51 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/")); |
50 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); | 52 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); |
51 target.set_output_type(Target::COPY_FILES); | 53 target.set_output_type(Target::COPY_FILES); |
52 | 54 |
53 target.sources().push_back(SourceFile("//foo/input1.txt")); | 55 target.sources().push_back(SourceFile("//foo/input1.txt")); |
54 | 56 |
55 target.action_values().outputs() = | 57 target.action_values().outputs() = |
56 SubstitutionList::MakeForTest("//out/Debug/output.out"); | 58 SubstitutionList::MakeForTest("//out/Debug/output.out"); |
57 | 59 |
58 target.SetToolchain(setup.toolchain()); | 60 target.SetToolchain(setup.toolchain()); |
59 target.OnResolved(); | 61 ASSERT_TRUE(target.OnResolved(&err)); |
60 | 62 |
61 std::ostringstream out; | 63 std::ostringstream out; |
62 NinjaCopyTargetWriter writer(&target, out); | 64 NinjaCopyTargetWriter writer(&target, out); |
63 writer.Run(); | 65 writer.Run(); |
64 | 66 |
65 const char expected_linux[] = | 67 const char expected_linux[] = |
66 "build output.out: copy ../../foo/input1.txt\n" | 68 "build output.out: copy ../../foo/input1.txt\n" |
67 "\n" | 69 "\n" |
68 "build obj/foo/bar.stamp: stamp output.out\n"; | 70 "build obj/foo/bar.stamp: stamp output.out\n"; |
69 std::string out_str = out.str(); | 71 std::string out_str = out.str(); |
70 EXPECT_EQ(expected_linux, out_str); | 72 EXPECT_EQ(expected_linux, out_str); |
71 } | 73 } |
OLD | NEW |