56 lines
1.5 KiB
Go
56 lines
1.5 KiB
Go
|
/*
|
||
|
Copyright The containerd 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.
|
||
|
*/
|
||
|
|
||
|
package continuity
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"io/ioutil"
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestAtomicWriteFile(t *testing.T) {
|
||
|
tmpDir, err := ioutil.TempDir("", "atomic-write-test")
|
||
|
if err != nil {
|
||
|
t.Fatalf("Error when creating temporary directory: %s", err)
|
||
|
}
|
||
|
defer os.RemoveAll(tmpDir)
|
||
|
|
||
|
expected := []byte("barbaz")
|
||
|
if err := AtomicWriteFile(filepath.Join(tmpDir, "foo"), expected, 0666); err != nil {
|
||
|
t.Fatalf("Error writing to file: %v", err)
|
||
|
}
|
||
|
|
||
|
actual, err := ioutil.ReadFile(filepath.Join(tmpDir, "foo"))
|
||
|
if err != nil {
|
||
|
t.Fatalf("Error reading from file: %v", err)
|
||
|
}
|
||
|
|
||
|
if bytes.Compare(actual, expected) != 0 {
|
||
|
t.Fatalf("Data mismatch, expected %q, got %q", expected, actual)
|
||
|
}
|
||
|
|
||
|
st, err := os.Stat(filepath.Join(tmpDir, "foo"))
|
||
|
if err != nil {
|
||
|
t.Fatalf("Error statting file: %v", err)
|
||
|
}
|
||
|
if expected := os.FileMode(0666); st.Mode() != expected {
|
||
|
t.Fatalf("Mode mismatched, expected %o, got %o", expected, st.Mode())
|
||
|
}
|
||
|
}
|