summaryrefslogtreecommitdiffstats
path: root/tools/gn/file_template_unittest.cc
blob: e05bda0e5a1425865c65adc0d579cf6e04cda64c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <sstream>

#include "testing/gtest/include/gtest/gtest.h"
#include "tools/gn/escape.h"
#include "tools/gn/file_template.h"

TEST(FileTemplate, Static) {
  std::vector<std::string> templates;
  templates.push_back("something_static");
  FileTemplate t(templates);
  EXPECT_FALSE(t.has_substitutions());

  std::vector<std::string> result;
  t.ApplyString("", &result);
  ASSERT_EQ(1u, result.size());
  EXPECT_EQ("something_static", result[0]);

  t.ApplyString("lalala", &result);
  ASSERT_EQ(1u, result.size());
  EXPECT_EQ("something_static", result[0]);
}

TEST(FileTemplate, Typical) {
  std::vector<std::string> templates;
  templates.push_back("foo/{{source_name_part}}.cc");
  templates.push_back("foo/{{source_name_part}}.h");
  FileTemplate t(templates);
  EXPECT_TRUE(t.has_substitutions());

  std::vector<std::string> result;
  t.ApplyString("sources/ha.idl", &result);
  ASSERT_EQ(2u, result.size());
  EXPECT_EQ("foo/ha.cc", result[0]);
  EXPECT_EQ("foo/ha.h", result[1]);
}

TEST(FileTemplate, Weird) {
  std::vector<std::string> templates;
  templates.push_back("{{{source}}{{source}}{{");
  FileTemplate t(templates);
  EXPECT_TRUE(t.has_substitutions());

  std::vector<std::string> result;
  t.ApplyString("foo/lalala.c", &result);
  ASSERT_EQ(1u, result.size());
  EXPECT_EQ("{foo/lalala.cfoo/lalala.c{{", result[0]);
}

TEST(FileTemplate, NinjaExpansions) {
  std::vector<std::string> templates;
  templates.push_back("-i");
  templates.push_back("{{source}}");
  templates.push_back("--out=foo bar\"{{source_name_part}}\".o");

  FileTemplate t(templates);

  std::ostringstream out;
  t.WriteWithNinjaExpansions(out);

  // The third argument should get quoted since it contains a space, and the
  // embedded quotes should get shell escaped.
  EXPECT_EQ(
      " -i ${source} \"--out=foo$ bar\\\"${source_name_part}\\\".o\"",
      out.str());
}

TEST(FileTemplate, NinjaVariables) {
  std::vector<std::string> templates;
  templates.push_back("-i");
  templates.push_back("{{source}}");
  templates.push_back("--out=foo bar\"{{source_name_part}}\".o");

  FileTemplate t(templates);

  std::ostringstream out;
  EscapeOptions options;
  options.mode = ESCAPE_NINJA_SHELL;
  t.WriteNinjaVariablesForSubstitution(out, "../../foo/bar.txt", options);

  // Just the variables used above should be written.
  EXPECT_EQ(
      "  source = ../../foo/bar.txt\n"
      "  source_name_part = bar\n",
      out.str());
}