|
| 1 | +// Copyright 2016 The Hugo Authors. All rights reserved. |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | +// |
| 8 | +// Unless required by applicable law or agreed to in writing, software |
| 9 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | +// See the License for the specific language governing permissions and |
| 12 | +// limitations under the License. |
| 13 | + |
| 14 | +package tpl |
| 15 | + |
| 16 | +import ( |
| 17 | + "html/template" |
| 18 | + "reflect" |
| 19 | + "strings" |
| 20 | + "testing" |
| 21 | +) |
| 22 | + |
| 23 | +func TestTruncate(t *testing.T) { |
| 24 | + var err error |
| 25 | + cases := []struct { |
| 26 | + v1 interface{} |
| 27 | + v2 interface{} |
| 28 | + v3 interface{} |
| 29 | + want interface{} |
| 30 | + isErr bool |
| 31 | + }{ |
| 32 | + {10, "I am a test sentence", nil, template.HTML("I am a …"), false}, |
| 33 | + {10, "", "I am a test sentence", template.HTML("I am a"), false}, |
| 34 | + {10, "", "a b c d e f g h i j k", template.HTML("a b c d e"), false}, |
| 35 | + {12, "", "<b>Should be escaped</b>", template.HTML("<b>Should be"), false}, |
| 36 | + {10, template.HTML(" <a href='#'>Read more</a>"), "I am a test sentence", template.HTML("I am a <a href='#'>Read more</a>"), false}, |
| 37 | + {20, template.HTML("I have a <a href='/markdown'>Markdown link</a> inside."), nil, template.HTML("I have a <a href='/markdown'>Markdown …</a>"), false}, |
| 38 | + {10, "IamanextremelylongwordthatjustgoesonandonandonjusttoannoyyoualmostasifIwaswritteninGermanActuallyIbettheresagermanwordforthis", nil, template.HTML("Iamanextre …"), false}, |
| 39 | + {10, template.HTML("<p>IamanextremelylongwordthatjustgoesonandonandonjusttoannoyyoualmostasifIwaswritteninGermanActuallyIbettheresagermanwordforthis</p>"), nil, template.HTML("<p>Iamanextre …</p>"), false}, |
| 40 | + {13, template.HTML("With <a href=\"/markdown\">Markdown</a> inside."), nil, template.HTML("With <a href=\"/markdown\">Markdown …</a>"), false}, |
| 41 | + {14, "Hello中国 Good 好的", nil, template.HTML("Hello中国 Good 好 …"), false}, |
| 42 | + {15, "", template.HTML("A <br> tag that's not closed"), template.HTML("A <br> tag that's"), false}, |
| 43 | + {14, template.HTML("<p>Hello中国 Good 好的</p>"), nil, template.HTML("<p>Hello中国 Good 好 …</p>"), false}, |
| 44 | + {2, template.HTML("<p>P1</p><p>P2</p>"), nil, template.HTML("<p>P1 …</p>"), false}, |
| 45 | + {3, template.HTML(strings.Repeat("<p>P</p>", 20)), nil, template.HTML("<p>P</p><p>P</p><p>P …</p>"), false}, |
| 46 | + {18, template.HTML("<p>test <b>hello</b> test something</p>"), nil, template.HTML("<p>test <b>hello</b> test …</p>"), false}, |
| 47 | + {4, template.HTML("<p>a<b><i>b</b>c d e</p>"), nil, template.HTML("<p>a<b><i>b</b>c …</p>"), false}, |
| 48 | + {10, nil, nil, template.HTML(""), true}, |
| 49 | + {nil, nil, nil, template.HTML(""), true}, |
| 50 | + } |
| 51 | + for i, c := range cases { |
| 52 | + var result template.HTML |
| 53 | + if c.v2 == nil { |
| 54 | + result, err = truncate(c.v1) |
| 55 | + } else if c.v3 == nil { |
| 56 | + result, err = truncate(c.v1, c.v2) |
| 57 | + } else { |
| 58 | + result, err = truncate(c.v1, c.v2, c.v3) |
| 59 | + } |
| 60 | + |
| 61 | + if c.isErr { |
| 62 | + if err == nil { |
| 63 | + t.Errorf("[%d] Slice didn't return an expected error", i) |
| 64 | + } |
| 65 | + } else { |
| 66 | + if err != nil { |
| 67 | + t.Errorf("[%d] failed: %s", i, err) |
| 68 | + continue |
| 69 | + } |
| 70 | + if !reflect.DeepEqual(result, c.want) { |
| 71 | + t.Errorf("[%d] got '%s' but expected '%s'", i, result, c.want) |
| 72 | + } |
| 73 | + } |
| 74 | + } |
| 75 | + |
| 76 | + // Too many arguments |
| 77 | + _, err = truncate(10, " ...", "I am a test sentence", "wrong") |
| 78 | + if err == nil { |
| 79 | + t.Errorf("Should have errored") |
| 80 | + } |
| 81 | + |
| 82 | +} |
0 commit comments