-
Notifications
You must be signed in to change notification settings - Fork 0
/
wttrin_test.go
77 lines (69 loc) · 1.37 KB
/
wttrin_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
73
74
75
76
77
package wttrin
import (
"io"
"io/ioutil"
"os"
"testing"
)
func TestWttrIn(t *testing.T) {
body, err := WttrIn("成都?0ATp")
if err != nil {
t.Error(err)
}
content, err := ioutil.ReadAll(body)
if err != nil {
t.Error(err)
}
defer body.Close()
t.Log(string(content))
}
func TestLine(t *testing.T) {
result, err := Line("zh", "成都", "地点%l 天气图标%c 天气文字%C 温度%t 风速%w 月相图标%m 新月后第几天%M 湿度%h 降水量%p 降水几率%o 气压%P 日落时间%s")
if err != nil {
t.Error(err)
}
t.Log(result)
result, err = Line("zh", "成都", "")
if err != nil {
t.Error(err)
}
t.Log(result)
}
func TestASCII(t *testing.T) {
result, err := ASCII("zh", "成都")
if err != nil {
t.Error(err)
}
t.Log(result)
result, err = ASCII("zh", "成都", "0", "A", "Q")
if err != nil {
t.Error(err)
}
t.Log(result)
}
func TestImage(t *testing.T) {
result, err := Image("zh", "成都")
if err != nil {
t.Error(err)
}
f, err := os.Create("./wttrin_noquery.png")
if err != nil {
t.Error(err)
}
defer f.Close()
if _, err := io.Copy(f, result); err != nil {
t.Error(err)
}
result, err = Image("zh", "成都", "A", "p", "F")
if err != nil {
t.Error(err)
}
f1, err := os.Create("./wttrin_query.png")
if err != nil {
t.Error(err)
}
defer f1.Close()
if _, err := io.Copy(f1, result); err != nil {
t.Error(err)
}
}