summaryrefslogtreecommitdiffhomepage
path: root/test/util/posix_error.cc
blob: 8522e4c81ae49a0fccad95ab9117576dad05bb2b (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
90
91
92
93
94
95
96
97
98
// Copyright 2018 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "test/util/posix_error.h"

#include <cassert>
#include <cerrno>
#include <cstring>
#include <string>

#include "absl/strings/str_cat.h"

namespace gvisor {
namespace testing {

std::string PosixError::ToString() const {
  if (ok()) {
    return "No Error";
  }

  std::string ret;

  char strerrno_buf[1024] = {};

  auto res = strerror_r(errno_, strerrno_buf, sizeof(strerrno_buf));

// The GNU version of strerror_r always returns a non-null char* pointing to a
// buffer containing the stringified errno; the XSI version returns a positive
// errno which indicates the result of writing the stringified errno into the
// supplied buffer. The gymnastics below are needed to support both.
#ifndef _GNU_SOURCE
  if (res != 0) {
    ret = absl::StrCat("PosixError(errno=", errno_, " strerror_r FAILED(", ret,
                       "))");
  } else {
    ret = absl::StrCat("PosixError(errno=", errno_, " ", strerrno_buf, ")");
  }
#else
  ret = absl::StrCat("PosixError(errno=", errno_, " ", res, ")");
#endif

  if (strnlen(msg_, sizeof(msg_)) > 0) {
    ret.append(" ");
    ret.append(msg_);
  }

  return ret;
}

::std::ostream& operator<<(::std::ostream& os, const PosixError& e) {
  os << e.ToString();
  return os;
}

void PosixErrorIsMatcherCommonImpl::DescribeTo(std::ostream* os) const {
  *os << "has an errno value that ";
  code_matcher_.DescribeTo(os);
  *os << ", and has an error message that ";
  message_matcher_.DescribeTo(os);
}

void PosixErrorIsMatcherCommonImpl::DescribeNegationTo(std::ostream* os) const {
  *os << "has an errno value that ";
  code_matcher_.DescribeNegationTo(os);
  *os << ", or has an error message that ";
  message_matcher_.DescribeNegationTo(os);
}

bool PosixErrorIsMatcherCommonImpl::MatchAndExplain(
    const PosixError& error,
    ::testing::MatchResultListener* result_listener) const {
  ::testing::StringMatchResultListener inner_listener;

  inner_listener.Clear();
  if (!code_matcher_.MatchAndExplain(error.errno_value(), &inner_listener)) {
    return false;
  }

  if (!message_matcher_.Matches(error.message())) {
    return false;
  }

  return true;
}

}  // namespace testing
}  // namespace gvisor