File: startup_status_unittest.cc

package info (click to toggle)
chromium 138.0.7204.183-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 6,080,960 kB
  • sloc: cpp: 34,937,079; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,954; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,811; php: 13,980; tcl: 13,166; yacc: 8,925; 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 (8)
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