1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// Copyright 2016 The Hugo Authors. All rights reserved.
//
// 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 helpers
import (
"reflect"
"testing"
)
func TestEmojiCustom(t *testing.T) {
for i, this := range []struct {
input string
expect []byte
}{
{"A :smile: a day", []byte("A π a day")},
{"A few :smile:s a day", []byte("A few πs a day")},
{"A :smile: and a :beer: makes the day for sure.", []byte("A π and a πΊ makes the day for sure.")},
{"A :smile: and: a :beer:", []byte("A π and: a πΊ")},
{"A :diamond_shape_with_a_dot_inside: and then some.", []byte("A π and then some.")},
{":smile:", []byte("π")},
{":smi", []byte(":smi")},
{"A :smile:", []byte("A π")},
{":beer:!", []byte("πΊ!")},
{"::smile:", []byte(":π")},
{":beer::", []byte("πΊ:")},
{" :beer: :", []byte(" πΊ :")},
{":beer: and :smile: and another :beer:!", []byte("πΊ and π and another πΊ!")},
{" :beer: : ", []byte(" πΊ : ")},
{"No smiles for you!", []byte("No smiles for you!")},
{" The motto: no smiles! ", []byte(" The motto: no smiles! ")},
{":hugo_is_the_best_static_gen:", []byte(":hugo_is_the_best_static_gen:")},
{"μν :smile: μν", []byte("μν π μν")},
// #2198
{"See: A :beer:!", []byte("See: A πΊ!")},
{`Aaaaaaaaaa: aaaaaaaaaa aaaaaaaaaa aaaaaaaaaa.
:beer:`, []byte(`Aaaaaaaaaa: aaaaaaaaaa aaaaaaaaaa aaaaaaaaaa.
πΊ`)},
{"test :\n```bash\nthis is a test\n```\n\ntest\n\n:cool::blush:::pizza:\\:blush : : blush: :pizza:", []byte("test :\n```bash\nthis is a test\n```\n\ntest\n\nππ:π\\:blush : : blush: π")},
{
// 2391
"[a](http://gohugo.io) :smile: [r](http://gohugo.io/introduction/overview/) :beer:",
[]byte(`[a](http://gohugo.io) π [r](http://gohugo.io/introduction/overview/) πΊ`),
},
} {
result := Emojify([]byte(this.input))
if !reflect.DeepEqual(result, this.expect) {
t.Errorf("[%d] got %q but expected %q", i, result, this.expect)
}
}
}
|