blob: f673f9947b85831dc48b46cbf2ac005579fa900a [file] [log] [blame]
William Kurkianea869482019-04-09 15:16:11 -04001// Copyright (c) 2016 Uber Technologies, Inc.
2//
3// Permission is hereby granted, free of charge, to any person obtaining a copy
4// of this software and associated documentation files (the "Software"), to deal
5// in the Software without restriction, including without limitation the rights
6// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7// copies of the Software, and to permit persons to whom the Software is
8// furnished to do so, subject to the following conditions:
9//
10// The above copyright notice and this permission notice shall be included in
11// all copies or substantial portions of the Software.
12//
13// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19// THE SOFTWARE.
20
21// Package exit provides stubs so that unit tests can exercise code that calls
22// os.Exit(1).
23package exit
24
25import "os"
26
Abhay Kumara61c5222025-11-10 07:32:50 +000027var _exit = os.Exit
William Kurkianea869482019-04-09 15:16:11 -040028
Abhay Kumara61c5222025-11-10 07:32:50 +000029// With terminates the process by calling os.Exit(code). If the package is
30// stubbed, it instead records a call in the testing spy.
31func With(code int) {
32 _exit(code)
William Kurkianea869482019-04-09 15:16:11 -040033}
34
35// A StubbedExit is a testing fake for os.Exit.
36type StubbedExit struct {
37 Exited bool
Abhay Kumara61c5222025-11-10 07:32:50 +000038 Code int
39 prev func(code int)
William Kurkianea869482019-04-09 15:16:11 -040040}
41
42// Stub substitutes a fake for the call to os.Exit(1).
43func Stub() *StubbedExit {
Abhay Kumara61c5222025-11-10 07:32:50 +000044 s := &StubbedExit{prev: _exit}
45 _exit = s.exit
William Kurkianea869482019-04-09 15:16:11 -040046 return s
47}
48
49// WithStub runs the supplied function with Exit stubbed. It returns the stub
50// used, so that users can test whether the process would have crashed.
51func WithStub(f func()) *StubbedExit {
52 s := Stub()
53 defer s.Unstub()
54 f()
55 return s
56}
57
58// Unstub restores the previous exit function.
59func (se *StubbedExit) Unstub() {
Abhay Kumara61c5222025-11-10 07:32:50 +000060 _exit = se.prev
William Kurkianea869482019-04-09 15:16:11 -040061}
62
Abhay Kumara61c5222025-11-10 07:32:50 +000063func (se *StubbedExit) exit(code int) {
William Kurkianea869482019-04-09 15:16:11 -040064 se.Exited = true
Abhay Kumara61c5222025-11-10 07:32:50 +000065 se.Code = code
William Kurkianea869482019-04-09 15:16:11 -040066}