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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
//go:build linux
// +build linux
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
** documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
** rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
** permit persons to whom the Software is furnished to do so, subject to the following conditions:
**
** The above copyright notice and this permission notice shall be included in all copies or substantial portions
** of the Software.
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
** WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
** COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
** SOFTWARE.
**/
// package std is used to create wrappers for standard Go functions to support
// mocking in tests where necessary
package std
import (
"bytes"
"os"
"syscall"
"time"
"golang.org/x/sys/unix"
)
// mocked os functionality
type MockOs interface {
MockFile(path string, data []byte)
}
type fileTime struct {
ModTime time.Time
}
type mockOs struct {
files map[string][]byte
ftimes map[string]fileTime
}
type mockFile struct {
buffer *bytes.Buffer
}
type fileStat struct {
name string
size int64
mode FileMode
modTime time.Time
sys syscall.Stat_t
}
func (o *mockOs) Open(name string) (File, error) {
if data, ok := o.files[name]; !ok {
return nil, os.ErrNotExist
} else {
return &mockFile{bytes.NewBuffer(data)}, nil
}
}
func (o *fileStat) IsDir() bool {
return false
}
func (o *fileStat) Mode() os.FileMode {
return os.FileMode(o.mode)
}
func (o *fileStat) ModTime() time.Time {
return o.modTime
}
func (o *fileStat) Name() string {
return o.name
}
func (o *fileStat) Size() int64 {
return o.size
}
func (o *fileStat) Sys() interface{} {
return &o.sys
}
func (o *mockOs) Stat(name string) (os.FileInfo, error) {
if data, ok := o.files[name]; !ok {
return nil, os.ErrNotExist
} else {
var fs fileStat
fs.mode = 436
fs.modTime = o.ftimes[name].ModTime
fs.name = name
fs.size = int64(len(data))
a, err := unix.TimeToTimespec(o.ftimes[name].ModTime)
if err != nil {
return nil, err
}
fs.sys.Atim.Sec = a.Sec
fs.sys.Ctim.Sec = a.Sec
return &fs, nil
}
}
func (o *mockOs) IsExist(err error) bool {
if err == nil {
return false
}
if err.Error() == "exists" {
return true
}
return false
}
func (f *mockFile) Close() error {
return nil
}
func (f *mockFile) Read(p []byte) (n int, err error) {
return f.buffer.Read(p)
}
// MockFile creates new mock file with the specified path and contents.
func (o *mockOs) MockFile(path string, data []byte) {
o.files[path] = data
var ft fileTime
ft.ModTime = time.Now()
o.ftimes[path] = ft
}
// NewMockOs returns Os interface that replaces supported os package functionality with mock functions.
func NewMockOs() Os {
return &mockOs{
files: make(map[string][]byte),
ftimes: make(map[string]fileTime),
}
}
|