File: startup_status_unittest.cc

package info (click to toggle)
chromium 139.0.7258.127-1~deb13u1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,096 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (105 lines) | stat: -rw-r--r-- 3,539 bytes parent folder | download | duplicates (9)
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/extensions/api/terminal/startup_status.h"

#include <memory>
#include <vector>

#include "base/functional/bind.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace extensions {

class StartupStatusTest : public testing::Test {
 protected:
  void Print(const std::string& output) {
    output_.emplace_back(std::move(output));
  }

  std::unique_ptr<StartupStatusPrinter> NewStatusPrinter(bool verbose) {
    return std::make_unique<StartupStatusPrinter>(
        base::BindRepeating(&StartupStatusTest::Print, base::Unretained(this)),
        verbose);
  }

  std::vector<std::string> output_;
};

TEST_F(StartupStatusTest, TestNotVerbose) {
  auto status_printer = NewStatusPrinter(false);
  status_printer->set_max_stage(10);
  status_printer->PrintStage(0, "Starting Stage");
  status_printer->PrintStage(2, "Second Stage");
  status_printer->PrintStage(10, "Last Stage");
  status_printer->PrintSucceeded();

  ASSERT_EQ(output_.size(), 5u);

  // Hide cursor, init progress.
  EXPECT_EQ(output_[0], "\x1b[?25l\x1b[35m[          ] ");

  // CR, purple, progress, erase-right, yellow, empty-stage.
  EXPECT_EQ(output_[1], "\r\x1b[35m[          ] \x1b[K\x1b[33m ");

  // CR, purple, progress, erase-right, yellow, empty-stage.
  EXPECT_EQ(output_[2], "\r\x1b[35m[==        ] \x1b[K\x1b[33m ");

  // CR, purple, progress, erase-right, yellow, empty-stage.
  EXPECT_EQ(output_[3], "\r\x1b[35m[==========] \x1b[K\x1b[33m ");

  // CR, erase-right, default color, show cursor.
  EXPECT_EQ(output_[4], "\r\x1b[K\x1b[0m\x1b[?25h");
}

TEST_F(StartupStatusTest, TestVerbose) {
  auto status_printer = NewStatusPrinter(true);
  status_printer->set_max_stage(10);
  status_printer->PrintStage(0, "Starting Stage");
  status_printer->PrintStage(2, "Second Stage");
  status_printer->PrintStage(10, "Last Stage");
  status_printer->PrintSucceeded();

  ASSERT_EQ(output_.size(), 6u);

  // Hide cursor, init progress.
  EXPECT_EQ(output_[0], "\x1b[?25l\x1b[35m[          ] ");

  // CR, purple, progress, erase-right, yellow, stage.
  EXPECT_EQ(output_[1], "\r\x1b[35m[          ] \x1b[K\x1b[33mStarting Stage ");

  // CR, purple, progress, erase-right, yellow, stage.
  EXPECT_EQ(output_[2], "\r\x1b[35m[==        ] \x1b[K\x1b[33mSecond Stage ");

  // CR, purple, progress, erase-right, yellow, stage.
  EXPECT_EQ(output_[3], "\r\x1b[35m[==========] \x1b[K\x1b[33mLast Stage ");

  // CR, purple, progress, erase-right, yellow, stage.
  EXPECT_EQ(output_[4], "\r\x1b[35m[==========] \x1b[K\x1b[1;32mReady\r\n ");

  // CR, erase-right, default color, show cursor.
  EXPECT_EQ(output_[5], "\r\x1b[K\x1b[0m\x1b[?25h");
}

TEST_F(StartupStatusTest, TestError) {
  auto status_printer = NewStatusPrinter(false);
  status_printer->set_max_stage(10);
  status_printer->PrintStage(1, "First Stage");
  status_printer->PrintError("Error message");  // Prints two things.

  ASSERT_EQ(output_.size(), 4u);

  // Hide cursor, init progress.
  EXPECT_EQ(output_[0], "\x1b[?25l\x1b[35m[          ] ");
  // CR, purple, progress, erase-right, yellow, stage.
  EXPECT_EQ(output_[1], "\r\x1b[35m[=         ] \x1b[K\x1b[33m ");

  // CR, Move forward 14 characters, red, error message.
  EXPECT_EQ(output_[2], "\r\x1b[14C\x1b[1;31mError message");

  // CR, erase-right, default color, show cursor.
  EXPECT_EQ(output_[3], "\r\x1b[K\x1b[0m\x1b[?25h");
}

}  // namespace extensions