-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.go
80 lines (72 loc) · 1.9 KB
/
util.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
78
79
80
// Copyright © 2016 Abcum Ltd
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this info 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 webdriver
import (
"encoding/json"
"errors"
"fmt"
"net"
"time"
)
type pos struct {
X int `json:"x" console:"x"`
Y int `json:"y" console:"y"`
}
type geo struct {
Lat float64 `json:"latitude"`
Lng float64 `json:"longitude"`
Alt float64 `json:"altitude"`
}
type size struct {
Width int `json:"width" console:"width"`
Height int `json:"height" console:"height"`
}
type response struct {
SessionId json.RawMessage `json:"sessionId"`
Status int `json:"status"`
Value json.RawMessage `json:"value"`
}
func oops(c int, obj *response) error {
switch c {
case 400:
return errors.New("400: Missing Command Parameters")
case 404:
return errors.New("404: Unknown command/Resource Not Found")
case 405:
return errors.New("405: Invalid Command Method")
case 500:
return errors.New("500: Failed Command")
case 501:
return errors.New("501: Unimplemented Command")
default:
return errors.New("Unknown error")
}
}
func wait(port int, timeout time.Duration) error {
address := fmt.Sprintf("127.0.0.1:%d", port)
now := time.Now()
for {
if conn, err := net.Dial("tcp", address); err == nil {
if err = conn.Close(); err != nil {
return err
}
break
}
if time.Since(now) > timeout {
return errors.New("start failed: timeout expired")
}
time.Sleep(1 * time.Second)
}
return nil
}