mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.4 KiB
68 lines
1.4 KiB
// Copyright 2022 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package charset |
|
|
|
import ( |
|
"strings" |
|
"testing" |
|
) |
|
|
|
func TestBreakWriter_Write(t *testing.T) { |
|
tests := []struct { |
|
name string |
|
kase string |
|
expect string |
|
wantErr bool |
|
}{ |
|
{ |
|
name: "noline", |
|
kase: "abcdefghijklmnopqrstuvwxyz", |
|
expect: "abcdefghijklmnopqrstuvwxyz", |
|
}, |
|
{ |
|
name: "endline", |
|
kase: "abcdefghijklmnopqrstuvwxyz\n", |
|
expect: "abcdefghijklmnopqrstuvwxyz<br>", |
|
}, |
|
{ |
|
name: "startline", |
|
kase: "\nabcdefghijklmnopqrstuvwxyz", |
|
expect: "<br>abcdefghijklmnopqrstuvwxyz", |
|
}, |
|
{ |
|
name: "onlyline", |
|
kase: "\n\n\n", |
|
expect: "<br><br><br>", |
|
}, |
|
{ |
|
name: "empty", |
|
kase: "", |
|
expect: "", |
|
}, |
|
{ |
|
name: "midline", |
|
kase: "\nabc\ndefghijkl\nmnopqrstuvwxy\nz", |
|
expect: "<br>abc<br>defghijkl<br>mnopqrstuvwxy<br>z", |
|
}, |
|
} |
|
for _, tt := range tests { |
|
t.Run(tt.name, func(t *testing.T) { |
|
buf := &strings.Builder{} |
|
b := &BreakWriter{ |
|
Writer: buf, |
|
} |
|
n, err := b.Write([]byte(tt.kase)) |
|
if (err != nil) != tt.wantErr { |
|
t.Errorf("BreakWriter.Write() error = %v, wantErr %v", err, tt.wantErr) |
|
return |
|
} |
|
if n != len(tt.kase) { |
|
t.Errorf("BreakWriter.Write() = %v, want %v", n, len(tt.kase)) |
|
} |
|
if buf.String() != tt.expect { |
|
t.Errorf("BreakWriter.Write() wrote %q, want %v", buf.String(), tt.expect) |
|
} |
|
}) |
|
} |
|
}
|
|
|