1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "testing/gtest/include/gtest/gtest.h"
6 #include "tools/gn/test_with_scope.h"
7 #include "tools/gn/value.h"
9 TEST(Value
, ToString
) {
10 Value
strval(nullptr, "hi\" $me\\you\\$\\\"");
11 EXPECT_EQ("hi\" $me\\you\\$\\\"", strval
.ToString(false));
12 EXPECT_EQ("\"hi\\\" \\$me\\you\\\\\\$\\\\\\\"\"", strval
.ToString(true));
15 EXPECT_EQ("<void>", Value().ToString(false));
17 // Test lists, bools, and ints.
18 Value
listval(nullptr, Value::LIST
);
19 listval
.list_value().push_back(Value(nullptr, "hi\"me"));
20 listval
.list_value().push_back(Value(nullptr, true));
21 listval
.list_value().push_back(Value(nullptr, false));
22 listval
.list_value().push_back(Value(nullptr, static_cast<int64
>(42)));
23 // Printing lists always causes embedded strings to be quoted (ignoring the
24 // quote flag), or else they wouldn't make much sense.
25 EXPECT_EQ("[\"hi\\\"me\", true, false, 42]", listval
.ToString(false));
26 EXPECT_EQ("[\"hi\\\"me\", true, false, 42]", listval
.ToString(true));
30 Scope
* scope
= new Scope(setup
.scope());
31 Value
scopeval(nullptr, scoped_ptr
<Scope
>(scope
));
32 EXPECT_EQ("{ }", scopeval
.ToString(false));
34 scope
->SetValue("a", Value(nullptr, static_cast<int64
>(42)), nullptr);
35 scope
->SetValue("b", Value(nullptr, "hello, world"), nullptr);
36 EXPECT_EQ("{\n a = 42\n b = \"hello, world\"\n}", scopeval
.ToString(false));