How to use Anchor method of tdhttp Package

Best Go-testdeep code snippet using tdhttp.Anchor

test_api.go

Source:test_api.go Github

copy

Full Screen

...494// }))495//496// It fails if no request has been sent yet.497func (ta *TestAPI) CmpResponse(expectedResponse any) *TestAPI {498 defer ta.t.AnchorsPersistTemporarily()()499 ta.t.Helper()500 if !ta.checkRequestSent() {501 ta.failed |= responseFailed502 return ta503 }504 if !ta.t.RootName("Response").505 Cmp(ta.response.Result(), expectedResponse, ta.name+"full response should match") {506 ta.failed |= responseFailed507 if ta.autoDumpResponse {508 ta.dumpResponse()509 }510 }511 return ta512}513// CmpStatus tests the last request response status against514// expectedStatus. expectedStatus can be an int to match a fixed HTTP515// status code, or a [td.TestDeep] operator.516//517// ta := tdhttp.NewTestAPI(t, mux)518//519// ta.Get("/test").520// CmpStatus(http.StatusOK)521//522// ta.PostJSON("/new", map[string]string{"name": "Bob"}).523// CmpStatus(td.Between(200, 202))524//525// It fails if no request has been sent yet.526func (ta *TestAPI) CmpStatus(expectedStatus any) *TestAPI {527 defer ta.t.AnchorsPersistTemporarily()()528 ta.t.Helper()529 if !ta.checkRequestSent() {530 ta.failed |= statusFailed531 return ta532 }533 if !ta.t.RootName("Response.Status").534 CmpLax(ta.response.Code, expectedStatus, ta.name+"status code should match") {535 ta.failed |= statusFailed536 if ta.autoDumpResponse {537 ta.dumpResponse()538 }539 }540 return ta541}542// CmpHeader tests the last request response header against543// expectedHeader. expectedHeader can be a [http.Header] or a544// [td.TestDeep] operator. Keep in mind that if it is a [http.Header],545// it has to match exactly the response header. Often only the546// presence of a header key is needed:547//548// ta := tdhttp.NewTestAPI(t, mux).549// PostJSON("/new", map[string]string{"name": "Bob"}).550// CmdStatus(201).551// CmpHeader(td.ContainsKey("X-Custom"))552//553// or some specific key, value pairs:554//555// ta.CmpHeader(td.SuperMapOf(556// http.Header{557// "X-Account": []string{"Bob"},558// },559// td.MapEntries{560// "X-Token": td.Bag(td.Re(`^[a-z0-9-]{32}\z`)),561// }),562// )563//564// Note that CmpHeader calls can be chained:565//566// ta.CmpHeader(td.ContainsKey("X-Account")).567// CmpHeader(td.ContainsKey("X-Token"))568//569// instead of doing all tests in one call as [td.All] operator allows it:570//571// ta.CmpHeader(td.All(572// td.ContainsKey("X-Account"),573// td.ContainsKey("X-Token"),574// ))575//576// It fails if no request has been sent yet.577func (ta *TestAPI) CmpHeader(expectedHeader any) *TestAPI {578 defer ta.t.AnchorsPersistTemporarily()()579 ta.t.Helper()580 if !ta.checkRequestSent() {581 ta.failed |= headerFailed582 return ta583 }584 if !ta.t.RootName("Response.Header").585 CmpLax(ta.response.Result().Header, expectedHeader, ta.name+"header should match") {586 ta.failed |= headerFailed587 if ta.autoDumpResponse {588 ta.dumpResponse()589 }590 }591 return ta592}593// CmpTrailer tests the last request response trailer against594// expectedTrailer. expectedTrailer can be a [http.Header] or a595// [td.TestDeep] operator. Keep in mind that if it is a [http.Header],596// it has to match exactly the response trailer. Often only the597// presence of a trailer key is needed:598//599// ta := tdhttp.NewTestAPI(t, mux).600// PostJSON("/new", map[string]string{"name": "Bob"}).601// CmdStatus(201).602// CmpTrailer(td.ContainsKey("X-Custom"))603//604// or some specific key, value pairs:605//606// ta.CmpTrailer(td.SuperMapOf(607// http.Header{608// "X-Account": []string{"Bob"},609// },610// td.MapEntries{611// "X-Token": td.Re(`^[a-z0-9-]{32}\z`),612// }),613// )614//615// Note that CmpTrailer calls can be chained:616//617// ta.CmpTrailer(td.ContainsKey("X-Account")).618// CmpTrailer(td.ContainsKey("X-Token"))619//620// instead of doing all tests in one call as [td.All] operator allows it:621//622// ta.CmpTrailer(td.All(623// td.ContainsKey("X-Account"),624// td.ContainsKey("X-Token"),625// ))626//627// It fails if no request has been sent yet.628//629// Note that until go1.19, it does not handle multiple values in630// a single Trailer header field.631func (ta *TestAPI) CmpTrailer(expectedTrailer any) *TestAPI {632 defer ta.t.AnchorsPersistTemporarily()()633 ta.t.Helper()634 if !ta.checkRequestSent() {635 ta.failed |= trailerFailed636 return ta637 }638 if !ta.t.RootName("Response.Trailer").639 CmpLax(ta.response.Result().Trailer, expectedTrailer, ta.name+"trailer should match") {640 ta.failed |= trailerFailed641 if ta.autoDumpResponse {642 ta.dumpResponse()643 }644 }645 return ta646}647// CmpCookies tests the last request response cookies against648// expectedCookies. expectedCookies can be a [][*http.Cookie] or a649// [td.TestDeep] operator. Keep in mind that if it is a650// [][*http.Cookie], it has to match exactly the response651// cookies. Often only the presence of a cookie key is needed:652//653// ta := tdhttp.NewTestAPI(t, mux).654// PostJSON("/login", map[string]string{"name": "Bob", "password": "Sponge"}).655// CmdStatus(200).656// CmpCookies(td.SuperBagOf(td.Struct(&http.Cookie{Name: "cookie_session"}, nil))).657// CmpCookies(td.SuperBagOf(td.Smuggle("Name", "cookie_session"))) // shorter658//659// To make tests easier, [http.Cookie.Raw] and [http.Cookie.RawExpires] fields660// of each [*http.Cookie] are zeroed before doing the comparison. So no need661// to fill them when comparing against a simple literal as in:662//663// ta := tdhttp.NewTestAPI(t, mux).664// PostJSON("/login", map[string]string{"name": "Bob", "password": "Sponge"}).665// CmdStatus(200).666// CmpCookies([]*http.Cookies{667// {Name: "cookieName1", Value: "cookieValue1"},668// {Name: "cookieName2", Value: "cookieValue2"},669// })670//671// It fails if no request has been sent yet.672func (ta *TestAPI) CmpCookies(expectedCookies any) *TestAPI {673 defer ta.t.AnchorsPersistTemporarily()()674 ta.t.Helper()675 if !ta.checkRequestSent() {676 ta.failed |= cookiesFailed677 return ta678 }679 // Empty Raw* fields to make comparisons easier680 cookies := ta.response.Result().Cookies()681 for _, c := range cookies {682 c.RawExpires, c.Raw = "", ""683 }684 if !ta.t.RootName("Response.Cookie").685 CmpLax(cookies, expectedCookies, ta.name+"cookies should match") {686 ta.failed |= cookiesFailed687 if ta.autoDumpResponse {688 ta.dumpResponse()689 }690 }691 return ta692}693// findCmpXBodyCaller finds the oldest Cmp* method called.694func findCmpXBodyCaller() string {695 var (696 fn string697 pc [20]uintptr698 found bool699 )700 if num := runtime.Callers(5, pc[:]); num > 0 {701 frames := runtime.CallersFrames(pc[:num])702 for {703 frame, more := frames.Next()704 if pos := strings.Index(frame.Function, "tdhttp.(*TestAPI).Cmp"); pos > 0 {705 fn = frame.Function[pos+18:]706 found = true707 } else if found {708 more = false709 }710 if !more {711 break712 }713 }714 }715 return fn716}717func (ta *TestAPI) cmpMarshaledBody(718 acceptEmptyBody bool,719 unmarshal func([]byte, any) error,720 expectedBody any,721) *TestAPI {722 defer ta.t.AnchorsPersistTemporarily()()723 ta.t.Helper()724 if !ta.checkRequestSent() {725 ta.failed |= bodyFailed726 return ta727 }728 if !acceptEmptyBody &&729 !ta.t.RootName("Response body").Code(ta.response.Body.Bytes(),730 func(b []byte) error {731 if len(b) > 0 {732 return nil733 }734 return &ctxerr.Error{735 Message: "%% is empty!",736 Summary: ctxerr.NewSummary(737 "Body cannot be empty when using " + findCmpXBodyCaller()),738 }739 },740 ta.name+"body should not be empty") {741 ta.failed |= bodyFailed742 if ta.autoDumpResponse {743 ta.dumpResponse()744 }745 return ta746 }747 tt := ta.t.RootName("Response.Body")748 var bodyType reflect.Type749 // If expectedBody is a TestDeep operator, try to ask it the type750 // behind it. It should work in most cases (typically Struct(),751 // Map() & Slice()).752 var unknownExpectedType, showRawBody bool753 op, ok := expectedBody.(td.TestDeep)754 if ok {755 bodyType = op.TypeBehind()756 if bodyType == nil {757 // As the expected body type cannot be guessed, try to758 // unmarshal in an any759 bodyType = types.Interface760 unknownExpectedType = true761 // Special case for Ignore & NotEmpty operators762 switch op.GetLocation().Func {763 case "Ignore", "NotEmpty":764 showRawBody = (ta.failed & statusFailed) != 0 // Show real body if status failed765 }766 }767 } else {768 bodyType = reflect.TypeOf(expectedBody)769 if bodyType == nil {770 bodyType = types.Interface771 }772 }773 // For unmarshaling below, body must be a pointer774 bodyPtr := reflect.New(bodyType)775 // Try to unmarshal body776 if !tt.RootName("unmarshal(Response.Body)").777 CmpNoError(unmarshal(ta.response.Body.Bytes(), bodyPtr.Interface()), ta.name+"body unmarshaling") {778 // If unmarshal failed, perhaps it's coz the expected body type779 // is unknown?780 if unknownExpectedType {781 tt.Logf("Cannot guess the body expected type as %[1]s TestDeep\n"+782 "operator does not know the type behind it.\n"+783 "You can try All(Isa(EXPECTED_TYPE), %[1]s(…)) to disambiguate…",784 op.GetLocation().Func)785 }786 showRawBody = true // let's show its real body contents787 ta.failed |= bodyFailed788 } else if !tt.Cmp(bodyPtr.Elem().Interface(), expectedBody, ta.name+"body contents is OK") {789 // Try to catch bad body expected type when nothing has been set790 // to non-zero during unmarshaling body. In this case, require791 // to show raw body contents.792 if len(ta.response.Body.Bytes()) > 0 &&793 td.EqDeeply(bodyPtr.Interface(), reflect.New(bodyType).Interface()) {794 showRawBody = true795 tt.Log("Hmm… It seems nothing has been set during unmarshaling…")796 }797 ta.failed |= bodyFailed798 }799 if showRawBody || ((ta.failed&bodyFailed) != 0 && ta.autoDumpResponse) {800 ta.dumpResponse()801 }802 return ta803}804// CmpMarshaledBody tests that the last request response body can be805// unmarshaled using unmarshal function and then, that it matches806// expectedBody. expectedBody can be any type unmarshal function can807// handle, or a [td.TestDeep] operator.808//809// See [TestAPI.CmpJSONBody] and [TestAPI.CmpXMLBody] sources for810// examples of use.811//812// It fails if no request has been sent yet.813func (ta *TestAPI) CmpMarshaledBody(unmarshal func([]byte, any) error, expectedBody any) *TestAPI {814 ta.t.Helper()815 return ta.cmpMarshaledBody(false, unmarshal, expectedBody)816}817// CmpBody tests the last request response body against818// expectedBody. expectedBody can be a []byte, a string or a819// [td.TestDeep] operator.820//821// ta := tdhttp.NewTestAPI(t, mux)822//823// ta.Get("/test").824// CmpStatus(http.StatusOK).825// CmpBody("OK!\n")826//827// ta.Get("/test").828// CmpStatus(http.StatusOK).829// CmpBody(td.Contains("OK"))830//831// It fails if no request has been sent yet.832func (ta *TestAPI) CmpBody(expectedBody any) *TestAPI {833 ta.t.Helper()834 if expectedBody == nil {835 return ta.NoBody()836 }837 return ta.cmpMarshaledBody(838 true, // accept empty body839 func(body []byte, target any) error {840 switch target := target.(type) {841 case *string:842 *target = string(body)843 case *[]byte:844 *target = body845 case *any:846 *target = body847 default:848 // cmpMarshaledBody always calls us with target as a pointer849 return fmt.Errorf(850 "CmpBody only accepts expectedBody be a []byte, a string or a TestDeep operator allowing to match these types, but not type %s",851 reflect.TypeOf(target).Elem())852 }853 return nil854 },855 expectedBody)856}857// CmpJSONBody tests that the last request response body can be858// [json.Unmarshal]'ed and that it matches expectedBody. expectedBody859// can be any type one can [json.Unmarshal] into, or a [td.TestDeep]860// operator.861//862// ta := tdhttp.NewTestAPI(t, mux)863//864// ta.Get("/person/42").865// CmpStatus(http.StatusOK).866// CmpJSONBody(Person{867// ID: 42,868// Name: "Bob",869// Age: 26,870// })871//872// ta.PostJSON("/person", Person{Name: "Bob", Age: 23}).873// CmpStatus(http.StatusCreated).874// CmpJSONBody(td.SStruct(875// Person{876// Name: "Bob",877// Age: 26,878// },879// td.StructFields{880// "ID": td.NotZero(),881// }))882//883// The same with anchoring, and so without [td.SStruct]:884//885// ta := tdhttp.NewTestAPI(tt, mux)886//887// ta.PostJSON("/person", Person{Name: "Bob", Age: 23}).888// CmpStatus(http.StatusCreated).889// CmpJSONBody(Person{890// ID: ta.Anchor(td.NotZero(), uint64(0)).(uint64),891// Name: "Bob",892// Age: 26,893// })894//895// The same using [td.JSON]:896//897// ta.PostJSON("/person", Person{Name: "Bob", Age: 23}).898// CmpStatus(http.StatusCreated).899// CmpJSONBody(td.JSON(`900// {901// "id": NotZero(),902// "name": "Bob",903// "age": 26904// }`))905//906// It fails if no request has been sent yet.907func (ta *TestAPI) CmpJSONBody(expectedBody any) *TestAPI {908 ta.t.Helper()909 return ta.CmpMarshaledBody(json.Unmarshal, expectedBody)910}911// CmpXMLBody tests that the last request response body can be912// [xml.Unmarshal]'ed and that it matches expectedBody. expectedBody913// can be any type one can [xml.Unmarshal] into, or a [td.TestDeep]914// operator.915//916// ta := tdhttp.NewTestAPI(t, mux)917//918// ta.Get("/person/42").919// CmpStatus(http.StatusOK).920// CmpXMLBody(Person{921// ID: 42,922// Name: "Bob",923// Age: 26,924// })925//926// ta.Get("/person/43").927// CmpStatus(http.StatusOK).928// CmpXMLBody(td.SStruct(929// Person{930// Name: "Bob",931// Age: 26,932// },933// td.StructFields{934// "ID": td.NotZero(),935// }))936//937// The same with anchoring:938//939// ta := tdhttp.NewTestAPI(tt, mux)940//941// ta.Get("/person/42").942// CmpStatus(http.StatusOK).943// CmpXMLBody(Person{944// ID: ta.Anchor(td.NotZero(), uint64(0)).(uint64),945// Name: "Bob",946// Age: 26,947// })948//949// It fails if no request has been sent yet.950func (ta *TestAPI) CmpXMLBody(expectedBody any) *TestAPI {951 ta.t.Helper()952 return ta.CmpMarshaledBody(xml.Unmarshal, expectedBody)953}954// NoBody tests that the last request response body is empty.955//956// It fails if no request has been sent yet.957func (ta *TestAPI) NoBody() *TestAPI {958 defer ta.t.AnchorsPersistTemporarily()()959 ta.t.Helper()960 if !ta.checkRequestSent() {961 ta.failed |= bodyFailed962 return ta963 }964 ok := ta.t.RootName("Response.Body").965 Code(len(ta.response.Body.Bytes()) == 0,966 func(empty bool) error {967 if empty {968 return nil969 }970 return &ctxerr.Error{971 Message: "%% is not empty",972 Got: types.RawString("not empty"),973 Expected: types.RawString("empty"),974 }975 },976 "body should be empty")977 if !ok {978 ta.failed |= bodyFailed979 // Systematically dump response, no AutoDumpResponse needed980 ta.dumpResponse()981 }982 return ta983}984// Or executes function fn if ta.Failed() is true at the moment it is called.985//986// fn can have several types:987// - func(body string) or func(t *td.T, body string)988// → fn is called with response body as a string.989// If no response has been received yet, body is "";990// - func(body []byte) or func(t *td.T, body []byte)991// → fn is called with response body as a []byte.992// If no response has been received yet, body is nil;993// - func(t *td.T, resp *httptest.ResponseRecorder)994// → fn is called with the internal object containing the response.995// See net/http/httptest for details.996// If no response has been received yet, resp is nil.997//998// If fn type is not one of these types, it calls ta.T().Fatal().999func (ta *TestAPI) Or(fn any) *TestAPI {1000 ta.t.Helper()1001 switch fn := fn.(type) {1002 case func(string):1003 if ta.Failed() {1004 var body string1005 if ta.response != nil && ta.response.Body != nil {1006 body = ta.response.Body.String()1007 }1008 fn(body)1009 }1010 case func(*td.T, string):1011 if ta.Failed() {1012 var body string1013 if ta.response != nil && ta.response.Body != nil {1014 body = ta.response.Body.String()1015 }1016 fn(ta.t, body)1017 }1018 case func([]byte):1019 if ta.Failed() {1020 var body []byte1021 if ta.response != nil && ta.response.Body != nil {1022 body = ta.response.Body.Bytes()1023 }1024 fn(body)1025 }1026 case func(*td.T, []byte):1027 if ta.Failed() {1028 var body []byte1029 if ta.response != nil && ta.response.Body != nil {1030 body = ta.response.Body.Bytes()1031 }1032 fn(ta.t, body)1033 }1034 case func(*td.T, *httptest.ResponseRecorder):1035 if ta.Failed() {1036 fn(ta.t, ta.response)1037 }1038 default:1039 ta.t.Fatal(color.BadUsage(1040 "Or(func([*td.T,]string) | func([*td.T,][]byte) | func(*td.T,*httptest.ResponseRecorder))",1041 fn, 1, true))1042 }1043 return ta1044}1045// OrDumpResponse dumps the response if at least one previous test failed.1046//1047// ta := tdhttp.NewTestAPI(t, handler)1048//1049// ta.Get("/foo").1050// CmpStatus(200).1051// OrDumpResponse(). // if status check failed, dumps the response1052// CmpBody("bar") // if it fails, the response is not dumped1053//1054// ta.Get("/foo").1055// CmpStatus(200).1056// CmpBody("bar").1057// OrDumpResponse() // dumps the response if status and/or body checks fail1058//1059// See [TestAPI.AutoDumpResponse] method to automatize this dump.1060func (ta *TestAPI) OrDumpResponse() *TestAPI {1061 if ta.Failed() {1062 ta.dumpResponse()1063 }1064 return ta1065}1066func (ta *TestAPI) dumpResponse() {1067 if ta.responseDumped {1068 return1069 }1070 ta.t.Helper()1071 if ta.response != nil {1072 ta.responseDumped = true1073 internal.DumpResponse(ta.t, ta.response.Result())1074 return1075 }1076 ta.t.Logf("No response received yet")1077}1078// Anchor returns a typed value allowing to anchor the [td.TestDeep]1079// operator operator in a go classic literal like a struct, slice,1080// array or map value.1081//1082// ta := tdhttp.NewTestAPI(tt, mux)1083//1084// ta.Get("/person/42").1085// CmpStatus(http.StatusOK).1086// CmpJSONBody(Person{1087// ID: ta.Anchor(td.NotZero(), uint64(0)).(uint64),1088// Name: "Bob",1089// Age: 26,1090// })1091//1092// See [td.T.Anchor] for details.1093//1094// See [TestAPI.A] method for a shorter synonym of Anchor.1095func (ta *TestAPI) Anchor(operator td.TestDeep, model ...any) any {1096 return ta.t.Anchor(operator, model...)1097}1098// A is a synonym for [TestAPI.Anchor]. It returns a typed value allowing to1099// anchor the [td.TestDeep] operator in a go classic literal1100// like a struct, slice, array or map value.1101//1102// ta := tdhttp.NewTestAPI(tt, mux)1103//1104// ta.Get("/person/42").1105// CmpStatus(http.StatusOK).1106// CmpJSONBody(Person{1107// ID: ta.A(td.NotZero(), uint64(0)).(uint64),1108// Name: "Bob",1109// Age: 26,1110// })1111//1112// See [td.T.Anchor] for details.1113func (ta *TestAPI) A(operator td.TestDeep, model ...any) any {1114 return ta.Anchor(operator, model...)1115}1116// SentAt returns the time just before the last request is handled. It1117// can be used to check the time a route sets and returns, as in:1118//1119// ta.PostJSON("/person/42", Person{Name: "Bob", Age: 23}).1120// CmpStatus(http.StatusCreated).1121// CmpJSONBody(Person{1122// ID: ta.A(td.NotZero(), uint64(0)).(uint64),1123// Name: "Bob",1124// Age: 23,1125// CreatedAt: ta.A(td.Between(ta.SentAt(), time.Now())).(time.Time),1126// })1127//1128// checks that CreatedAt field is included between the time when the...

Full Screen

Full Screen

http_test.go

Source:http_test.go Github

copy

Full Screen

...314 testTestAPI(t, (*tdhttp.TestAPI).CmpJSONBody, "CmpJSONBody", curTest)315 })316 }317}318func TestCmpJSONResponseAnchor(tt *testing.T) {319 t := td.NewT(tt)320 handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {321 w.WriteHeader(242)322 fmt.Fprintln(w, `{"name":"Bob"}`)323 })324 req := httptest.NewRequest("GET", "/path", nil)325 type JResp struct {326 Name string `json:"name"`327 }328 // With *td.T329 tdhttp.CmpJSONResponse(t, req, handler,330 tdhttp.Response{331 Status: 242,332 Body: JResp{333 Name: t.A(td.Re("(?i)bob"), "").(string),334 },335 })336 // With *testing.T337 tdhttp.CmpJSONResponse(tt, req, handler,338 tdhttp.Response{339 Status: 242,340 Body: JResp{341 Name: t.A(td.Re("(?i)bob"), "").(string),342 },343 })344 func() {345 defer t.AnchorsPersistTemporarily()()346 op := t.A(td.Re("(?i)bob"), "").(string)347 // All calls should succeed, as op persists348 tdhttp.CmpJSONResponse(t, req, handler,349 tdhttp.Response{350 Status: 242,351 Body: JResp{Name: op},352 })353 tdhttp.CmpJSONResponse(t, req, handler,354 tdhttp.Response{355 Status: 242,356 Body: JResp{Name: op},357 })358 // Even with the original *testing.T instance (here tt)359 tdhttp.CmpJSONResponse(tt, req, handler,360 tdhttp.Response{361 Status: 242,362 Body: JResp{Name: op},363 })364 }()365 // Failures366 t.FailureIsFatal().False(t.DoAnchorsPersist()) // just to be sure367 mt := td.NewT(tdutil.NewT("tdhttp_persistence_test"))368 op := mt.A(td.Re("(?i)bob"), "").(string)369 // First call should succeed370 t.True(tdhttp.CmpJSONResponse(mt, req, handler,371 tdhttp.Response{372 Status: 242,373 Body: JResp{Name: op},374 }))375 // Second one should fail, as previously anchored operator has been reset376 t.False(tdhttp.CmpJSONResponse(mt, req, handler,377 tdhttp.Response{378 Status: 242,379 Body: JResp{Name: op},380 }))...

Full Screen

Full Screen

doc.go

Source:doc.go Github

copy

Full Screen

...18// CmpStatus(http.StatusOK).19// CmpHeader(td.ContainsKey("X-Custom-Header")).20// CmpCookie(td.SuperBagOf(td.Smuggle("Name", "cookie_session"))).21// CmpXMLBody(Person{22// ID: ta.Anchor(td.NotZero(), uint64(0)).(uint64),23// Name: "Bob",24// Age: 26,25// })26//27// ta.Get("/person/42", "Accept", "application/json").28// CmpStatus(http.StatusOK).29// CmpHeader(td.ContainsKey("X-Custom-Header")).30// CmpCookies(td.SuperBagOf(td.Struct(&http.Cookie{Name: "cookie_session"}, nil))).31// CmpJSONBody(td.JSON(`32// {33// "id": $1,34// "name": "Bob",35// "age": 2636// }`,...

Full Screen

Full Screen

Anchor

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 m := minify.New()4 m.AddFunc("text/css", css.Minify)5 m.AddFunc("text/html", html.Minify)6 m.AddFunc("text/javascript", js.Minify)7 m.AddFunc("application/json", json.Minify)8 m.AddFunc("image/svg+xml", svg.Minify)9 m.AddFuncRegexp(regexp.MustCompile("[/+]xml$"), xml.Minify)10 if err := m.Minify("text/css", os.Stdout, os.Stdin); err != nil {11 log.Fatal(err)12 }13 if err := m.Minify("text/javascript", os.Stdout, os.Stdin); err != nil {14 log.Fatal(err)15 }16 if err := m.Minify("text/html", os.Stdout, os.Stdin); err != nil {17 log.Fatal(err)18 }19 if err := m.Minify("application/json", os.Stdout, os.Stdin); err != nil {20 log.Fatal(err)21 }22 if err := m.Minify("image/svg+xml", os.Stdout, os.Stdin); err != nil {23 log.Fatal(err)24 }25 if err := m.Minify("text/xml", os.Stdout, os.Stdin); err != nil {26 log.Fatal(err)

Full Screen

Full Screen

Anchor

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 htmlFile, err := ioutil.ReadFile("test.html")4 if err != nil {5 fmt.Println(err)6 }7 m := minify.New()8 m.AddFunc("text/html", html.Minify)9 minifiedHtml, err := m.String("text/html", string(htmlFile))10 if err != nil {11 fmt.Println(err)12 }13 tdhttp := tdhttp.New()14 tdhttp.SetHtml(minifiedHtml)15 anchorHtml := tdhttp.Anchor()16 ioutil.WriteFile("test-anchor.html", []byte(anchorHtml), 0644)17}

Full Screen

Full Screen

Anchor

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 caps := selenium.Capabilities{"browserName": "chrome"}4 caps.AddChrome(chrome.Capabilities{5 Args: []string{6 },7 })8 wd, err := selenium.NewRemote(caps, "")9 if err != nil {10 panic(err)11 }12 defer wd.Quit()13 if err := wd.Get(url); err != nil {14 panic(err)15 }16 if err := wd.WaitWithTimeout(selenium.Condition{17 Func: func(wd selenium.WebDriver) (bool, error) {18 return wd.Title() == "Google", nil19 },20 }, 10*time.Second); err != nil {21 panic(err)22 }23 elem, err := wd.FindElement(selenium.ByCSSSelector, "#lst-ib")24 if err != nil {25 panic(err)26 }27 if err := elem.SendKeys("selenium"); err != nil {28 panic(err)29 }30 if err := elem.Submit(); err != nil {31 panic(err)32 }33 if err := wd.WaitWithTimeout(selenium.Condition{34 Func: func(wd selenium.WebDriver) (bool, error) {35 title, err := wd.Title()36 if err != nil {37 }38 },39 }, 10*time.Second); err != nil {40 panic(err)41 }42 anchors, err := wd.FindElements(selenium.ByCSSSelector, "h3.r > a")43 if err != nil {44 panic(err)45 }46 if len(anchors) <

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful