forked from notaryproject/notation-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Junjie Gao <[email protected]>
- Loading branch information
Showing
3 changed files
with
99 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package io | ||
|
||
import ( | ||
"bytes" | ||
"testing" | ||
) | ||
|
||
func TestLimitWriter(t *testing.T) { | ||
limit := int64(10) | ||
longString := "1234567891011" | ||
|
||
tests := []struct { | ||
input string | ||
expected string | ||
written int | ||
}{ | ||
{"hello", "hello", 5}, | ||
{" world", " world", 6}, | ||
{"!", "!", 1}, | ||
{"1234567891011", "1234567891", 10}, | ||
} | ||
|
||
for _, tt := range tests { | ||
var buf bytes.Buffer | ||
lw := NewLimitWriter(&buf, limit) | ||
n, err := lw.Write([]byte(tt.input)) | ||
if err != nil { | ||
t.Fatalf("unexpected error: %v", err) | ||
} | ||
if n != tt.written { | ||
t.Errorf("expected %d bytes written, got %d", tt.written, n) | ||
} | ||
if buf.String() != tt.expected { | ||
t.Errorf("expected buffer %q, got %q", tt.expected, buf.String()) | ||
} | ||
|
||
n, err = lw.Write([]byte(longString)) | ||
if err != nil { | ||
t.Fatalf("unexpected error: %v", err) | ||
} | ||
if n == len(longString) { | ||
t.Errorf("should not write more than the limit") | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Copyright The Notary Project 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 "io" | ||
|
||
// LimitWriter is a writer that writes to an underlying writer up to a limit. | ||
type LimitWriter struct { | ||
w io.Writer | ||
limit int64 | ||
written int64 | ||
} | ||
|
||
// NewLimitWriter returns a new LimitWriter that writes to w. | ||
// | ||
// parameters: | ||
// w: the writer to write to | ||
// limit: the maximum number of bytes to write | ||
func NewLimitWriter(w io.Writer, limit int64) *LimitWriter { | ||
return &LimitWriter{w: w, limit: limit} | ||
} | ||
|
||
func (lw *LimitWriter) Write(p []byte) (int, error) { | ||
remaining := lw.limit - lw.written | ||
if remaining <= 0 { | ||
return 0, nil | ||
} | ||
if int64(len(p)) > remaining { | ||
p = p[:remaining] | ||
} | ||
n, err := lw.w.Write(p) | ||
lw.written += int64(n) | ||
return n, err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters