File: sample_test.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 (53 lines) | stat: -rw-r--r-- 1,727 bytes parent folder | download | duplicates (6)
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
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <cstdio>
#include <fstream>
#include <iostream>
#include <sstream>
#include <string>

#include "testing/gtest/include/gtest/gtest.h"

namespace {

// Path to the test app used to locate sample app.
std::string s_test_app_path;

// Returns directory name with trailing separator extracted from the file path.
std::string DirName(const std::string& file_path) {
  size_t pos = file_path.find_last_of("\\/");
  if (std::string::npos == pos)
    return std::string();
  return file_path.substr(0, pos + 1);
}

// Runs |command_line| and returns string representation of its stdout.
std::string RunCommand(std::string command_line) {
  std::string result_out = "command_result.tmp";
  EXPECT_EQ(0, std::system((command_line + " >" + result_out).c_str()));
  std::stringstream result;
  result << std::ifstream(result_out).rdbuf();
  std::remove(result_out.c_str());
  return result.str();
}

// Test that cronet_sample runs and gets connection refused from localhost.
TEST(SampleTest, TestConnectionRefused) {
  // Expect "cronet_sample" app to be located in same directory as the test.
  std::string cronet_sample_path = DirName(s_test_app_path) + "cronet_sample";
  std::string url = "http://localhost:99999";
  std::string sample_out = RunCommand(cronet_sample_path + " " + url);

  // Expect cronet sample to run and fail with net::ERR_INVALID_URL.
  EXPECT_NE(std::string::npos, sample_out.find("net::ERR_INVALID_URL"));
}

}  // namespace

int main(int argc, char** argv) {
  s_test_app_path = argv[0];
  ::testing::InitGoogleTest(&argc, argv);
  return RUN_ALL_TESTS();
}