Home
last modified time | relevance | path

Searched +full:auth +full:- +full:tests (Results 1 – 25 of 1088) sorted by relevance

12345678910>>...44

/aosp_15_r20/out/soong/raw-aosp_shiba/0c/
D0c1b9a09832b52994c95f0bf49bba4299f9ee3803 from: "out/host/linux-x86/bin/lint"
7 from: "out/host/linux-x86/bin/lint_project_xml"
11 from: "out/host/linux-x86/bin/soong_zip"
15 from: "out/host/linux-x86/bin/zipsync"
19 from: "out/host/linux-x86/framework/lint.jar"
27 …mediates/cts/common/device-side/util-axt/compatibility-device-util-axt/android_common/jarjar/turbi…
28 …mediates/cts/common/device-side/util-axt/compatibility-device-util-axt/android_common/jarjar/turbi…
31 …/.intermediates/cts/tests/tests/keystore/cts-keystore-user-auth-helper-library/android_common/comb…
32 …/.intermediates/cts/tests/tests/keystore/cts-keystore-user-auth-helper-library/android_common/comb…
35 …latform.api.stubs.from-text/android_common/conscrypt.module.platform.api.stubs.from-text/conscrypt…
[all …]
/aosp_15_r20/external/python/google-auth-library-python/tests/
Dtest_aws.py7 # http://www.apache.org/licenses/LICENSE-2.0
23 from google.auth import _helpers
24 from google.auth import aws
25 from google.auth import environment_vars
26 from google.auth import exceptions
27 from google.auth import transport
34 SERVICE_ACCOUNT_EMAIL = "service-1234@service-name.iam.gserviceaccount.com"
36 "https://us-east1-iamcredentials.googleapis.com/v1/projects/-"
42 SUBJECT_TOKEN_TYPE = "urn:ietf:params:aws:token-type:aws4_request"
44 REGION_URL = "http://169.254.169.254/latest/meta-data/placement/availability-zone"
[all …]
/aosp_15_r20/external/python/httplib2/tests/
Dtest_auth.py3 import tests
28 password = tests.gen_password()
29 handler = tests.http_reflect_with_auth(
32 with tests.server_request(handler, request_count=3) as uri:
43 password = tests.gen_password()
44 handler = tests.http_reflect_with_auth(
47 with tests.server_request(handler, request_count=4) as uri:
62 password1 = tests.gen_password()
63 password2 = tests.gen_password()
65 handler = tests.http_reflect_with_auth(
[all …]
/aosp_15_r20/external/google-auth-library-java/oauth2_http/javatests/com/google/auth/oauth2/
H A DAwsRequestSignerTest.java32 package com.google.auth.oauth2;
50 * Tests for {@link AwsRequestSigner}.
53 * https://docs.aws.amazon.com/general/latest/gr/sigv4-signed-request-examples.html
73 …oto/botocore/blob/879f8440a4e9ace5d3cf145ce8b3d5e5ffb892ef/tests/unit/auth/aws4_testsuite/get-vani…
74 …oto/botocore/blob/879f8440a4e9ace5d3cf145ce8b3d5e5ffb892ef/tests/unit/auth/aws4_testsuite/get-vani…
83 AwsRequestSigner.newBuilder(BOTOCORE_CREDENTIALS, "GET", url, "us-east-1") in sign_getHost()
91 "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20110909/us-east-1/host/" in sign_getHost()
100 assertEquals("us-east-1", signature.getRegion()); in sign_getHost()
104 …otocore/blob/879f8440a4e9ace5d3cf145ce8b3d5e5ffb892ef/tests/unit/auth/aws4_testsuite/get-relative-
105 …otocore/blob/879f8440a4e9ace5d3cf145ce8b3d5e5ffb892ef/tests/unit/auth/aws4_testsuite/get-relative-
[all …]
/aosp_15_r20/external/tcpdump/tests/
H A DTESTLIST1 # The options -# and -n are useless in TESTLIST. They are already set
6 # We cannot rely on, for example, "print-x.out" and
7 # "print-X.out" being different files - we might be running
8 # this on a case-insensitive file system, e.g. a Windows
9 # file system or a case-insensitive HFS+ file system on
12 # Therefore, for "X" and "XX", we have "print-capX.out"
13 # and "print-capXX.out".
15 print-x print-flags.pcap print-x.out -x
16 print-xx print-flags.pcap print-xx.out -xx
17 print-X print-flags.pcap print-capX.out -X
[all …]
/aosp_15_r20/external/python/google-auth-library-python/
DCONTRIBUTING.rst9 Here are some guidelines for hacking on ``google-auth-library-python``.
12 --------------
14 A few notes on making changes to ``google-auth-library-python``.
16 - If you've added a new feature or modified an existing feature, be sure to
18 documentation (in ``docs/``). You can re-generate the reference documentation
19 using ``nox -s docgen``.
21 - The change must work fully on the following CPython versions:
24 - The codebase *must* have 100% test statement coverage after each commit.
25 You can test coverage via ``nox -e cover``.
28 ---------------
[all …]
Dnoxfile.py7 # http://www.apache.org/licenses/LICENSE-2.0
26 "tests",
36 session.install("flake8", "flake8-import-order", "docutils", BLACK_VERSION)
37 session.install("-e", ".")
38 session.run("black", "--check", *BLACK_PATHS)
41 "--import-order-style=google",
42 "--application-import-names=google,tests,system_tests",
44 "tests",
48 "python", "setup.py", "check", "--metadata", "--restructuredtext", "--strict"
68 CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
[all …]
/aosp_15_r20/external/python/google-auth-library-python/system_tests/system_tests_sync/app_engine_test_app/
Dmain.py7 # http://www.apache.org/licenses/LICENSE-2.0
15 """App Engine standard application that runs basic system tests for
16 google.auth.app_engine.
17 This application has to run tests manually instead of using pytest because
28 import google.auth
29 from google.auth import _helpers
30 from google.auth import app_engine
31 import google.auth.transport.urllib3
43 EMAIL_SCOPE = "https://www.googleapis.com/auth/userinfo.email"
45 HTTP_REQUEST = google.auth.transport.urllib3.Request(HTTP)
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/
H A D.brazil.json5 "annotations": { "packageName": "AwsJavaSdk-Core-Annotations" },
6 "apache-client": { "packageName": "AwsJavaSdk-HttpClient-ApacheClient" },
7 "arns": { "packageName": "AwsJavaSdk-Core-Arns" },
8 "auth": { "packageName": "AwsJavaSdk-Core-Auth" }, object
9 "auth-crt": { "packageName": "AwsJavaSdk-Core-AuthCrt" },
10 "aws-cbor-protocol": { "packageName": "AwsJavaSdk-Core-AwsCborProtocol" },
11 "aws-core": { "packageName": "AwsJavaSdk-Core-AwsCore" },
12 "aws-crt-client": { "packageName": "AwsJavaSdk-HttpClient-CrtClient" },
13 "aws-ion-protocol": { "packageName": "AwsJavaSdk-Core-AwsIonProtocol" },
14 "aws-json-protocol": { "packageName": "AwsJavaSdk-Core-AwsJsonProtocol" },
[all …]
H A Dpom.xml2 <!--
15 -->
17 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.…
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
22 <artifactId>aws-sdk-java-pom</artifactId>
27 for building software on AWS' cost-effective, scalable, and reliable
53 <module>aws-sdk-java</module>
56 <module>services-custom</module>
58 <module>bom-internal</module>
60 <module>http-client-spi</module>
[all …]
/aosp_15_r20/cts/tests/tests/accounts/src/android/accounts/cts/
H A DAccountManagerTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
52 * You can run those unit tests with the following command line:
55 * -e debug false -w
56 * -e class android.accounts.cts.AccountManagerTest
182 // Clean out any other accounts added during the tests. in tearDown()
584 @AppModeFull(reason = "The methods are for sign-up wizards associated with authenticators.")
610 @AppModeFull(reason = "The methods are for sign-up wizards associated with authenticators.")
642 @AppModeFull(reason = "The methods are for sign-up wizards associated with authenticators.")
667 @AppModeFull(reason = "The methods are for sign-up wizards associated with authenticators.")
692 @AppModeFull(reason = "The methods are for sign-up wizards associated with authenticators.")
[all …]
/aosp_15_r20/external/grpc-grpc/doc/
H A Dinterop-test-descriptions.md6 and the [gRPC over HTTP/2 v2 protocol](./PROTOCOL-HTTP2.md).
9 ------
12 provided the test case it is expected to run as a command-line parameter. Names
16 * --server_host=HOSTNAME
18 * --server_host_override=HOSTNAME
20 :authority header. If unspecified, the value of --server_host will be
22 * --server_port=PORT
24 * --test_case=TESTCASE
26 * --use_tls=BOOLEAN
28 * --use_test_ca=BOOLEAN
[all …]
/aosp_15_r20/external/jsoup/src/test/java/org/jsoup/integration/
H A DProxyTest.java28 Tests Jsoup.connect proxy support */
68 .header("Random-Header-name", "hello") in redirectViaProxy()
75 assertEquals("hello", ihVal("Random-Header-name", doc)); in redirectViaProxy()
99 …tions(); // reset any existing authed connections from previous tests, so we can test the auth flow in canAuthenticateToProxy()
101 … // the proxy wants auth, but not the server. HTTP and HTTPS, so tests direct proxy and CONNECT in canAuthenticateToProxy()
110 int code = execute.statusCode(); // no auth sent in canAuthenticateToProxy()
113 …URLConnection will throw the proxy connect as a Stringly typed IO exception - "Unable to tunnel th… in canAuthenticateToProxy()
120 .auth(ctx -> { in canAuthenticateToProxy()
133 .auth(ctx -> { in canAuthenticateToProxy()
148 Connection session = Jsoup.newSession() // both proxy and server will want auth in canAuthToProxyAndServer()
[all …]
/aosp_15_r20/external/cronet/net/http/
H A Dhttp_auth_handler_digest_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
32 "Digest realm=\"Oblivion\", nonce=\"nonce-value\"";
57 token->clear(); in RespondToChallenge()
62 factory->set_nonce_generator(std::move(nonce_generator)); in RespondToChallenge()
70 int rv_create = factory->CreateAuthHandlerFromString( in RespondToChallenge()
74 ADD_FAILURE() << "Unable to create auth handler."; in RespondToChallenge()
84 request->url = GURL(request_url); in RespondToChallenge()
86 int rv_generate = handler->GenerateAuthToken( in RespondToChallenge()
89 ADD_FAILURE() << "Problems generating auth token"; in RespondToChallenge()
100 // clang-format off in TEST()
[all …]
/aosp_15_r20/cts/tests/libcore/luni/
H A DAndroid.bp7 // http://www.apache.org/licenses/LICENSE-2.0
17 default_applicable_licenses: ["Android-Apache-2.0"],
25 "apache-harmony-tests",
26 "conscrypt-support",
27 "conscrypt-tests",
28 "core-tests",
29 "cts-core-test-runner-axt",
32 "libcore-expectations-knownfailures-jar",
33 "libcore-expectations-virtualdeviceknownfailures-jar",
35 "mockito-target-minus-junit4",
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/test/tests-coverage-reporting/
H A Dpom.xml1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
15 -->
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 …xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <artifactId>aws-sdk-java-pom</artifactId>
28 <artifactId>tests-coverage-reporting</artifactId>
29 <name>AWS Java SDK :: Test :: Tests Coverage Reporting</name>
30 <description>Used to aggregate integration and unit tests coverage reports
36 <artifactId>auth</artifactId>
[all …]
/aosp_15_r20/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/
Dfirebaserules.v1.json2 "auth": { object
5 "https://www.googleapis.com/auth/cloud-platform": {
8 "https://www.googleapis.com/auth/firebase": {
11 "https://www.googleapis.com/auth/firebase.readonly": {
21 …"description": "Creates and manages rules that determine when a Firebase Rules-enabled service sho…
26 "x16": "http://www.google.com/images/icons/product/search-16.gif",
27 "x32": "http://www.google.com/images/icons/product/search-32.gif"
63 "Responses with Content-Type of application/json",
64 "Media download with context-dependent Content-Type",
65 "Responses with Content-Type of application/x-protobuf"
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/codegen/src/test/java/software/amazon/awssdk/codegen/poet/
H A DClientTestModels.java38 …File serviceModel = new File(ClientTestModels.class.getResource("client/c2j/json/service-2.json").… in awsJsonServiceModels()
51 …= new File(ClientTestModels.class.getResource("client/c2j/query-to-json-errorcode/service-2.json")… in awsQueryCompatibleJsonServiceModels()
52 …ionModel = new File(ClientTestModels.class.getResource("client/c2j/query-to-json-errorcode/customi… in awsQueryCompatibleJsonServiceModels()
53 …orsModel = new File(ClientTestModels.class.getResource("client/c2j/query-to-json-errorcode/paginat… in awsQueryCompatibleJsonServiceModels()
64 …del = new File(ClientTestModels.class.getResource("client/c2j/json-bearer-auth/service-2.json").ge… in bearerAuthServiceModels()
65 …onModel = new File(ClientTestModels.class.getResource("client/c2j/json-bearer-auth/customization.c… in bearerAuthServiceModels()
66 …rsModel = new File(ClientTestModels.class.getResource("client/c2j/json-bearer-auth/paginators.json… in bearerAuthServiceModels()
77 …eModel = new File(ClientTestModels.class.getResource("client/c2j/rest-json/service-2.json").getFil… in restJsonServiceModels()
78 …File customizationModel = new File(ClientTestModels.class.getResource("client/c2j/rest-json/custom… in restJsonServiceModels()
79 …File paginatorsModel = new File(ClientTestModels.class.getResource("client/c2j/rest-json/paginator… in restJsonServiceModels()
[all …]
/aosp_15_r20/external/cronet/net/proxy_resolution/
H A Dproxy_config_service_linux_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
38 // TODO(eroman): Convert these to parameterized tests using TEST_P().
105 value_type* value_ptr = it->second; in Get()
143 if (it == table_.end() || !*it->second) in GetVar()
147 *result = *(it->second); in GetVar()
258 return !result->empty(); in GetStringList()
296 main_thread_.task_runner()->PostTask( in SyncConfigGetter()
304 main_thread_.task_runner()->PostTask( in ~SyncConfigGetter()
314 config_service_->SetupAndFetchInitialConfig( in SetupAndInitialFetch()
321 main_thread_.task_runner()->PostTask( in SyncGetLatestProxyConfig()
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/2f/
D2fb155f1d81b81ce4ca061213f65facea45445332 AndroidFrameworkLintChecker(minSdkVersion:current) (external) <- CtsKeystoreTestCases
3 ConnectedAppsSDK(minSdkVersion:28) <- RemoteFrameworkClasses, TestApp, TestApp_TestApps
4 …ConnectedAppsSDK_Annotations(minSdkVersion:current) <- ConnectedAppsSDK, RemoteFrameworkClasses, T…
5 …ConnectedAppsSDK_Processor(minSdkVersion:current) (external) <- RemoteFrameworkClasses, TestApp, T…
6 CtsMockInputMethodLib(minSdkVersion:current) <- cts-wm-util
7 CtsMockInputMethodRes(minSdkVersion:21) (external) <- CtsMockInputMethodLib
8 DeviceAdminApp(minSdkVersion:29) <- CtsKeystoreTestCases
9 EventLib(minSdkVersion:29) <- DeviceAdminApp, HarrierInternal, TestApp, TestApp_TestApps
10 Harrier(minSdkVersion:29) <- CtsKeystoreTestCases
11 HarrierCommonAndroid(minSdkVersion:29) <- HarrierInternal, bedstead-root-annotations
[all …]
/aosp_15_r20/cts/tests/framework/base/biometrics/src/android/server/biometrics/
H A DBiometricSimpleTests.java8 * http://www.apache.org/licenses/LICENSE-2.0
68 * Simple tests.
75 * Tests that enrollments created via {@link BiometricTestSession} show up in the
95 * Tests that the sensorIds retrieved via {@link BiometricManager#getSensorProperties()} and
113 * Tests that the PackageManager features and biometric dumpsys are consistent with each other.
289 () -> mBiometricManager.canAuthenticate(authenticator)); in testInvalidInputs()
295 () -> showBiometricPromptWithAuthenticators(authenticator)); in testInvalidInputs()
366 * 4) Cancelling auth for options 2) and 3)
425 @CddTest(requirements = {"7.3.10/C-4-2"})
444 // Let's just try to check+auth against WEAK, since CONVENIENCE isn't even in testSimpleBiometricAuth_convenience()
[all …]
/aosp_15_r20/external/python/google-auth-library-python/tests_async/oauth2/
Dtest_id_token.py7 # http://www.apache.org/licenses/LICENSE-2.0
20 from google.auth import environment_vars
21 from google.auth import exceptions
22 import google.auth.compute_engine._metadata
26 from tests.oauth2 import test_id_token
63 @mock.patch("google.auth.jwt.decode", autospec=True)
81 @mock.patch("google.auth.jwt.decode", autospec=True)
101 @mock.patch("google.auth.jwt.decode", autospec=True)
217 with mock.patch("google.auth.compute_engine._metadata.ping", return_value=True):
219 google.auth.compute_engine.IDTokenCredentials,
[all …]
/aosp_15_r20/prebuilts/tools/common/m2/repository/com/google/auth/google-auth-library-oauth2-http/1.23.0/
H A Dgoogle-auth-library-oauth2-http-1.23.0.pom1 <?xml version="1.0" encoding="UTF-8"?>
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
8 <groupId>com.google.auth</groupId>
9 <artifactId>google-auth-library-parent</artifactId>
10 <version>1.23.0</version><!-- {x-version-update:google-auth-library-parent:current} -->
14 <artifactId>google-auth-library-oauth2-http</artifactId>
15 <name>Google Auth Library for Java - OAuth2 HTTP</name>
34 <artifactId>maven-surefire-plugin</artifactId>
37 <!-- Excludes integration tests when unit tests are run. -->
[all …]
/aosp_15_r20/external/google-auth-library-java/oauth2_http/
H A Dpom.xml1 <?xml version="1.0" encoding="UTF-8"?>
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
8 <groupId>com.google.auth</groupId>
9 <artifactId>google-auth-library-parent</artifactId>
10 <version>1.23.0</version><!-- {x-version-update:google-auth-library-parent:current} -->
14 <artifactId>google-auth-library-oauth2-http</artifactId>
15 <name>Google Auth Library for Java - OAuth2 HTTP</name>
34 <artifactId>maven-surefire-plugin</artifactId>
37 <!-- Excludes integration tests when unit tests are run. -->
[all …]
/aosp_15_r20/external/skia/infra/bots/
H A Dtasks.json3 "BazelBuild-all_tests-debug-linux_x64": {
5 "BazelBuild-all_tests-debug-linux_x64"
8 "BazelBuild-all_tests-release-linux_x64": {
10 "BazelBuild-all_tests-release-linux_x64"
13 "BazelBuild-android_math_test-for_android_arm64_release-linux_x64": {
15 "BazelBuild-android_math_test-for_android_arm64_release-linux_x64"
18 "BazelBuild-core-release-linux_x64": {
20 "BazelBuild-core-release-linux_x64"
23 "BazelBuild-cpu_8888_benchmark_android_test-for_android_arm64_release-linux_x64": {
25 "BazelBuild-cpu_8888_benchmark_android_test-for_android_arm64_release-linux_x64"
[all …]

12345678910>>...44