mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
e81ccc406b
Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
69 lines
1.4 KiB
Go
69 lines
1.4 KiB
Go
// 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)
|
|
}
|
|
})
|
|
}
|
|
}
|