forked from skip2/go-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_test.go
56 lines (47 loc) · 1.14 KB
/
example_test.go
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
// go-qrcode
// Copyright 2014 Tom Harwood
/*
Amendments Thu, 2017-December-14:
- test integration (go test -v)
- idiomatic go code
*/
package qrcode
import (
"fmt"
"image/color"
"os"
"testing"
)
func TestExampleEncode(t *testing.T) {
if png, err := Encode("https://example.org", Medium, 256); err != nil {
t.Errorf("Error: %s", err.Error())
} else {
fmt.Printf("PNG is %d bytes long", len(png))
}
}
func TestExampleWriteFile(t *testing.T) {
filename := "example.png"
if err := WriteFile("https://example.org", Medium, 256, filename); err != nil {
t.Errorf("Error: %s", err)
return
}
os.Remove(filename)
}
func TestExampleEncodeWithColourAndWithoutBorder(t *testing.T) {
q, err := New("https://example.org", Medium)
if err != nil {
t.Errorf("Error: %s", err)
return
}
// Optionally, disable the QR Code border.
q.DisableBorder = true
// Optionally, set the colours.
q.ForegroundColor = color.RGBA{R: 0x33, G: 0x33, B: 0x66, A: 0xff}
q.BackgroundColor = color.RGBA{R: 0xef, G: 0xef, B: 0xef, A: 0xff}
err = q.WriteFile(256, "example2.png")
if err != nil {
t.Errorf("Error: %s", err)
return
}
os.Remove("example2.png")
}