| William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 1 | // 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). |
| 23 | package exit |
| 24 | |
| 25 | import "os" |
| 26 | |
| Abhay Kumar | a61c522 | 2025-11-10 07:32:50 +0000 | [diff] [blame^] | 27 | var _exit = os.Exit |
| William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 28 | |
| Abhay Kumar | a61c522 | 2025-11-10 07:32:50 +0000 | [diff] [blame^] | 29 | // With terminates the process by calling os.Exit(code). If the package is |
| 30 | // stubbed, it instead records a call in the testing spy. |
| 31 | func With(code int) { |
| 32 | _exit(code) |
| William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | // A StubbedExit is a testing fake for os.Exit. |
| 36 | type StubbedExit struct { |
| 37 | Exited bool |
| Abhay Kumar | a61c522 | 2025-11-10 07:32:50 +0000 | [diff] [blame^] | 38 | Code int |
| 39 | prev func(code int) |
| William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | // Stub substitutes a fake for the call to os.Exit(1). |
| 43 | func Stub() *StubbedExit { |
| Abhay Kumar | a61c522 | 2025-11-10 07:32:50 +0000 | [diff] [blame^] | 44 | s := &StubbedExit{prev: _exit} |
| 45 | _exit = s.exit |
| William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 46 | 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. |
| 51 | func 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. |
| 59 | func (se *StubbedExit) Unstub() { |
| Abhay Kumar | a61c522 | 2025-11-10 07:32:50 +0000 | [diff] [blame^] | 60 | _exit = se.prev |
| William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 61 | } |
| 62 | |
| Abhay Kumar | a61c522 | 2025-11-10 07:32:50 +0000 | [diff] [blame^] | 63 | func (se *StubbedExit) exit(code int) { |
| William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 64 | se.Exited = true |
| Abhay Kumar | a61c522 | 2025-11-10 07:32:50 +0000 | [diff] [blame^] | 65 | se.Code = code |
| William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 66 | } |