| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /*
- Copyright 2020 Docker Compose CLI 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 utils
- import (
- "bytes"
- "fmt"
- "strings"
- "sync"
- "testing"
- "time"
- "gotest.tools/v3/poll"
- )
- // SafeBuffer is a thread safe version of bytes.Buffer
- type SafeBuffer struct {
- m sync.RWMutex
- b bytes.Buffer
- }
- // Read is a thread safe version of bytes.Buffer::Read
- func (b *SafeBuffer) Read(p []byte) (n int, err error) {
- b.m.RLock()
- defer b.m.RUnlock()
- return b.b.Read(p)
- }
- // Write is a thread safe version of bytes.Buffer::Write
- func (b *SafeBuffer) Write(p []byte) (n int, err error) {
- b.m.Lock()
- defer b.m.Unlock()
- return b.b.Write(p)
- }
- // String is a thread safe version of bytes.Buffer::String
- func (b *SafeBuffer) String() string {
- b.m.RLock()
- defer b.m.RUnlock()
- return b.b.String()
- }
- // Bytes is a thread safe version of bytes.Buffer::Bytes
- func (b *SafeBuffer) Bytes() []byte {
- b.m.RLock()
- defer b.m.RUnlock()
- return b.b.Bytes()
- }
- // RequireEventuallyContains is a thread safe eventual checker for the buffer content
- func (b *SafeBuffer) RequireEventuallyContains(t testing.TB, v string) {
- t.Helper()
- var bufContents strings.Builder
- poll.WaitOn(t, func(logt poll.LogT) poll.Result {
- bufContents.Reset()
- b.m.Lock()
- defer b.m.Unlock()
- if _, err := b.b.WriteTo(&bufContents); err != nil {
- return poll.Error(fmt.Errorf("failed to copy from buffer. Error: %w", err))
- }
- if !strings.Contains(bufContents.String(), v) {
- return poll.Continue(
- "buffer does not contain %q\n============\n%s\n============",
- v, &bufContents)
- }
- return poll.Success()
- },
- poll.WithTimeout(2*time.Second),
- poll.WithDelay(20*time.Millisecond),
- )
- }
|