mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-30 02:00:19 +00:00
95 lines
2.1 KiB
Go
95 lines
2.1 KiB
Go
/*
|
|
Copyright 2018 The Kubernetes 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 io
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"syscall"
|
|
"testing"
|
|
)
|
|
|
|
func writeToPipe(namedPipe string, flaky bool, i int) {
|
|
pipe, err := os.OpenFile(namedPipe, os.O_WRONLY, 0600)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// The first two reads should never be consistent but all
|
|
// subsequent reads should be
|
|
outstr := fmt.Sprintf("Foobar %t", (i <= 0))
|
|
|
|
if flaky {
|
|
outstr = fmt.Sprintf("Foobar %d", i)
|
|
}
|
|
|
|
pipe.Write([]byte(outstr))
|
|
pipe.Close()
|
|
}
|
|
|
|
func makePipe(t *testing.T) string {
|
|
tmp, err := ioutil.TempDir("", "pipe-test")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
pipe := filepath.Join(tmp, "pipe")
|
|
syscall.Mkfifo(pipe, 0600)
|
|
|
|
return pipe
|
|
}
|
|
|
|
func writer(namedPipe string, flaky bool, c <-chan int, d <-chan bool) {
|
|
// Make sure something is in the fifo otherwise the first iteration of
|
|
// ConsistentRead will block forever
|
|
writeToPipe(namedPipe, flaky, -1)
|
|
|
|
for {
|
|
select {
|
|
case i := <-c:
|
|
writeToPipe(namedPipe, flaky, i)
|
|
case <-d:
|
|
os.RemoveAll(namedPipe)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestConsistentRead(t *testing.T) {
|
|
pipe := makePipe(t)
|
|
prog, done := make(chan int), make(chan bool)
|
|
go writer(pipe, false, prog, done)
|
|
|
|
if _, err := consistentReadSync(pipe, 3, func(i int) { prog <- i }); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
done <- true
|
|
}
|
|
|
|
func TestConsistentReadFlakyReader(t *testing.T) {
|
|
pipe := makePipe(t)
|
|
prog, done := make(chan int), make(chan bool)
|
|
go writer(pipe, true, prog, done)
|
|
|
|
if _, err := consistentReadSync(pipe, 3, func(i int) { prog <- i }); err == nil {
|
|
t.Fatal("flaky reader returned consistent results")
|
|
}
|
|
}
|