-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path2captcha_test.go
43 lines (38 loc) · 1011 Bytes
/
2captcha_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
package captchaAIO
import (
"log"
"os"
"testing"
)
var api2CaptchaKey = os.Getenv("API2CAPTCHA")
// TestTwoCaptcha_Type tests whether the the 2captcha client implements
// to the Client interface
func TestTwoCaptcha_Type(t *testing.T) {
var _ Client = &TwoCaptcha{}
var _ Client = NewTwoCaptchaClient("")
}
func TestTwoCaptcha_SolveRecaptcha(t *testing.T) {
solver := NewTwoCaptchaClient(api2CaptchaKey)
c := ReCaptcha{
SiteKey: "6LfW6wATAAAAAHLqO2pb8bDBahxlMxNdo9g947u9",
PageUrl: "https://recaptcha-demo.appspot.com/recaptcha-v2-checkbox.php",
Action: "verify",
}
res, err := solver.Solve(c, "")
if err != nil {
t.Fatalf(err.Error())
}
log.Println(res)
}
func TestTwoCaptcha_SolveHCaptcha(t *testing.T) {
solver := NewTwoCaptchaClient(api2CaptchaKey)
c := HCaptcha{
SiteKey: "51829642-2cda-4b09-896c-594f89d700cc",
PageUrl: "http://democaptcha.com/demo-form-eng/hcaptcha.html",
}
res, err := solver.Solve(c, "")
if err != nil {
t.Fatalf(err.Error())
}
log.Println(res)
}