This commit is contained in:
Brad Rydzewski 2017-05-14 19:59:13 +02:00
parent 833b5af087
commit f734bd0b60
2 changed files with 9 additions and 9 deletions

View file

@ -38,10 +38,10 @@ type Build struct {
// Trim trims string values that would otherwise exceed // Trim trims string values that would otherwise exceed
// the database column sizes and fail to insert. // the database column sizes and fail to insert.
func (b *Build) Trim() { func (b *Build) Trim() {
if len(b.Title) > 500 { if len(b.Title) > 1000 {
b.Title = b.Title[:500] b.Title = b.Title[:1000]
} }
if len(b.Message) > 500 { if len(b.Message) > 2000 {
b.Message = b.Message[:500] b.Message = b.Message[:2000]
} }
} }

View file

@ -7,17 +7,17 @@ import (
) )
func TestBuildTrim(t *testing.T) { func TestBuildTrim(t *testing.T) {
d := make([]byte, 1000) d := make([]byte, 2000)
rand.Read(d) rand.Read(d)
b := Build{} b := Build{}
b.Message = fmt.Sprintf("%X", d) b.Message = fmt.Sprintf("%X", d)
if len(b.Message) != 2000 { if len(b.Message) != 4000 {
t.Errorf("Failed to generate 2000 byte test string") t.Errorf("Failed to generate 4000 byte test string")
} }
b.Trim() b.Trim()
if len(b.Message) != 500 { if len(b.Message) != 2000 {
t.Errorf("Failed to trim text string to 500 bytes") t.Errorf("Failed to trim text string to 2000 bytes")
} }
} }