-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicat_test.go
72 lines (62 loc) · 1.6 KB
/
icat_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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package icat
import (
"image"
"image/jpeg"
"net/http"
"os"
"testing"
"time"
)
var (
img image.Image
)
func init() {
fd, err := os.Open("test_images/gosea.jpg")
if err != nil {
panic(err)
}
img, err = jpeg.Decode(fd)
if err != nil {
panic(err)
}
}
func gobike(rw http.ResponseWriter, req *http.Request) {
ICat(img, rw)
}
func TestICat(t *testing.T) {
for i := 0; i < 10; i++ {
ICat(img, os.Stdout)
}
time.Sleep(2e9)
}
func TestICatBase64(t *testing.T) {
ICatBase64("iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAAA3NCSVQICAjb4U/gAAAABlBMVEX///+ZmZmOUEqyAAAAAnRSTlMA/1uRIrUAAAAJcEhZcwAACusAAArrAYKLDVoAAAAWdEVYdENyZWF0aW9uIFRpbWUAMDkvMjAvMTIGkKG+AAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAAB1JREFUCJljONjA8LiBoZyBwY6BQQZMAtlAkYMNAF1fBs/zPvcnAAAAAElFTkSuQmCC", os.Stdout)
}
func TestICatHttp(t *testing.T) {
ICatHttp("http://bramus.github.io/ws2-sws-course-materials/assets/xx/github.png", os.Stdout)
}
func TestMultiEncodeWr(t *testing.T) {
out, _ := os.OpenFile("out.jpg", os.O_CREATE|os.O_WRONLY, 0644)
defer out.Close()
ws := NewMultiEncodeWr(nil, os.Stdout, out)
jpeg.Encode(ws, img, &jpeg.Options{100})
ws.FlushStdout(0)
ws.Flush(1)
ws.Flush(0)
}
func TestEncodeWr(t *testing.T) {
// fd, _ := os.OpenFile("out.txt", os.O_CREATE|os.O_RDWR, 0644)
// ew := NewEncodeWr(fd, nil)
ew := NewEncodeWr(os.Stdout, nil)
for i := 0; i < 10; i++ {
jpeg.Encode(ew, img, &jpeg.Options{100})
if err := ew.FlushStdout(); err != nil {
t.Errorf("%+v", err)
}
}
time.Sleep(2e9)
}
func TestHttpRespImage(t *testing.T) {
http.HandleFunc("/", gobike)
http.ListenAndServe(":8080", nil)
}