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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package present
import (
"fmt"
"html/template"
"strings"
"testing"
)
func TestParseCode(t *testing.T) {
// Enable play but revert the change at the end.
defer func(play bool) { PlayEnabled = play }(PlayEnabled)
PlayEnabled = true
helloTest := []byte(`
package main
import "fmt"
func main() {
fmt.Println("hello, test")
}
`)
helloTestHTML := template.HTML(`
<pre><span num="2">package main</span>
<span num="3"></span>
<span num="4">import "fmt"</span>
<span num="5"></span>
<span num="6">func main() {</span>
<span num="7"> fmt.Println("hello, test")</span>
<span num="8">}</span>
</pre>
`)
helloTestHL := []byte(`
package main
import "fmt" // HLimport
func main() { // HLfunc
fmt.Println("hello, test") // HL
}
`)
highlight := func(h template.HTML, s string) template.HTML {
return template.HTML(strings.Replace(string(h), s, "<b>"+s+"</b>", -1))
}
read := func(b []byte, err error) func(string) ([]byte, error) {
return func(string) ([]byte, error) { return b, err }
}
tests := []struct {
name string
readFile func(string) ([]byte, error)
sourceFile string
cmd string
err string
Code
}{
{
name: "all code, no play",
readFile: read(helloTest, nil),
sourceFile: "main.go",
cmd: ".code main.go",
Code: Code{
Ext: ".go",
FileName: "main.go",
Raw: helloTest,
Text: helloTestHTML,
},
},
{
name: "all code, play",
readFile: read(helloTest, nil),
sourceFile: "main.go",
cmd: ".play main.go",
Code: Code{
Ext: ".go",
FileName: "main.go",
Play: true,
Raw: helloTest,
Text: helloTestHTML,
},
},
{
name: "all code, highlighted",
readFile: read(helloTestHL, nil),
sourceFile: "main.go",
cmd: ".code main.go",
Code: Code{
Ext: ".go",
FileName: "main.go",
Raw: helloTestHL,
Text: highlight(helloTestHTML, "fmt.Println("hello, test")"),
},
},
{
name: "highlight only func",
readFile: read(helloTestHL, nil),
sourceFile: "main.go",
cmd: ".code main.go HLfunc",
Code: Code{
Ext: ".go",
FileName: "main.go",
Play: false,
Raw: []byte("package main\n\nimport \"fmt\" // HLimport\n\nfunc main() { // HLfunc\n\tfmt.Println(\"hello, test\") // HL\n}"),
Text: highlight(helloTestHTML, "func main() {"),
},
},
{
name: "bad highlight syntax",
readFile: read(helloTest, nil),
sourceFile: "main.go",
cmd: ".code main.go HL",
err: "invalid highlight syntax",
},
{
name: "error reading file",
readFile: read(nil, fmt.Errorf("nope")),
sourceFile: "main.go",
cmd: ".code main.go",
err: "main.go:0: nope",
},
{
name: "from func main to the end",
readFile: read(helloTest, nil),
sourceFile: "main.go",
cmd: ".code main.go /func main/,",
Code: Code{
Ext: ".go",
FileName: "main.go",
Play: false,
Raw: []byte("func main() {\n\tfmt.Println(\"hello, test\")\n}"),
Text: "<pre><span num=\"6\">func main() {</span>\n<span num=\"7\"> fmt.Println("hello, test")</span>\n<span num=\"8\">}</span>\n</pre>",
},
},
{
name: "just func main",
readFile: read(helloTest, nil),
sourceFile: "main.go",
cmd: ".code main.go /func main/",
Code: Code{
Ext: ".go",
FileName: "main.go",
Play: false,
Raw: []byte("func main() {"),
Text: "<pre><span num=\"6\">func main() {</span>\n</pre>",
},
},
{
name: "bad address",
readFile: read(helloTest, nil),
sourceFile: "main.go",
cmd: ".code main.go /function main/",
err: "main.go:0: no match for function main",
},
{
name: "all code with numbers",
readFile: read(helloTest, nil),
sourceFile: "main.go",
cmd: ".code -numbers main.go",
Code: Code{
Ext: ".go",
FileName: "main.go",
Raw: helloTest,
// Replacing the first "<pre>"
Text: "<pre class=\"numbers\">" + helloTestHTML[6:],
},
},
{
name: "all code editable",
readFile: read(helloTest, nil),
sourceFile: "main.go",
cmd: ".code -edit main.go",
Code: Code{
Ext: ".go",
FileName: "main.go",
Raw: helloTest,
Text: "<pre contenteditable=\"true\" spellcheck=\"false\">" + helloTestHTML[6:],
},
},
}
trimHTML := func(t template.HTML) string { return strings.TrimSpace(string(t)) }
trimBytes := func(b []byte) string { return strings.TrimSpace(string(b)) }
for _, tt := range tests {
ctx := &Context{tt.readFile}
e, err := parseCode(ctx, tt.sourceFile, 0, tt.cmd)
if err != nil {
if tt.err == "" {
t.Errorf("%s: unexpected error %v", tt.name, err)
} else if !strings.Contains(err.Error(), tt.err) {
t.Errorf("%s: expected error %s; got %v", tt.name, tt.err, err)
}
continue
}
if tt.err != "" {
t.Errorf("%s: expected error %s; but got none", tt.name, tt.err)
continue
}
c, ok := e.(Code)
if !ok {
t.Errorf("%s: expected a Code value; got %T", tt.name, e)
continue
}
if c.FileName != tt.FileName {
t.Errorf("%s: expected FileName %s; got %s", tt.name, tt.FileName, c.FileName)
}
if c.Ext != tt.Ext {
t.Errorf("%s: expected Ext %s; got %s", tt.name, tt.Ext, c.Ext)
}
if c.Play != tt.Play {
t.Errorf("%s: expected Play %v; got %v", tt.name, tt.Play, c.Play)
}
if got, wants := trimBytes(c.Raw), trimBytes(tt.Raw); got != wants {
t.Errorf("%s: expected Raw \n%q\n; got \n%q\n", tt.name, wants, got)
}
if got, wants := trimHTML(c.Text), trimHTML(tt.Text); got != wants {
t.Errorf("%s: expected Text \n%q\n; got \n%q\n", tt.name, wants, got)
}
}
}
|