• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/efl/tests/

Lines Matching refs:authenticationRequest

96     Ewk_Auth_Request* authenticationRequest = 0;
97 evas_object_smart_callback_add(webView(), "authentication,request", onAuthenticationRequest, &authenticationRequest);
101 while (!authenticationRequest)
104 ASSERT_TRUE(authenticationRequest);
107 EXPECT_STREQ("my realm", ewk_auth_request_realm_get(authenticationRequest));
108 EXPECT_STREQ("127.0.0.1", ewk_auth_request_host_get(authenticationRequest));
109 EXPECT_FALSE(ewk_auth_request_retrying_get(authenticationRequest));
111 ASSERT_TRUE(ewk_auth_request_authenticate(authenticationRequest, testUsername, testPassword));
113 ewk_object_unref(authenticationRequest);
123 Ewk_Auth_Request* authenticationRequest = 0;
124 evas_object_smart_callback_add(webView(), "authentication,request", onAuthenticationRequest, &authenticationRequest);
128 while (!authenticationRequest)
131 ASSERT_TRUE(authenticationRequest);
133 EXPECT_STREQ("my realm", ewk_auth_request_realm_get(authenticationRequest));
134 EXPECT_STREQ("127.0.0.1", ewk_auth_request_host_get(authenticationRequest));
135 EXPECT_FALSE(ewk_auth_request_retrying_get(authenticationRequest));
137 ASSERT_TRUE(ewk_auth_request_authenticate(authenticationRequest, testUsername, "wrongpassword"));
139 ewk_object_unref(authenticationRequest);
140 authenticationRequest = 0;
143 while (!authenticationRequest)
147 EXPECT_STREQ("my realm", ewk_auth_request_realm_get(authenticationRequest));
148 EXPECT_STREQ("127.0.0.1", ewk_auth_request_host_get(authenticationRequest));
149 EXPECT_TRUE(ewk_auth_request_retrying_get(authenticationRequest));
152 ASSERT_TRUE(ewk_auth_request_authenticate(authenticationRequest, testUsername, testPassword));
154 ewk_object_unref(authenticationRequest);
164 Ewk_Auth_Request* authenticationRequest = 0;
165 evas_object_smart_callback_add(webView(), "authentication,request", onAuthenticationRequest, &authenticationRequest);
169 while (!authenticationRequest)
172 ASSERT_TRUE(authenticationRequest);
175 EXPECT_STREQ("my realm", ewk_auth_request_realm_get(authenticationRequest));
176 EXPECT_STREQ("127.0.0.1", ewk_auth_request_host_get(authenticationRequest));
177 EXPECT_FALSE(ewk_auth_request_retrying_get(authenticationRequest));
183 ewk_object_unref(authenticationRequest);