Home
last modified time | relevance | path

Searched refs:test_provider (Results 1 – 25 of 71) sorted by relevance

123

/dports/devel/py-openstacksdk/openstacksdk-0.60.0/openstack/tests/unit/load_balancer/
H A Dtest_provider.py28 test_provider = provider.Provider()
29 self.assertEqual('providers', test_provider.resources_key)
30 self.assertEqual('/lbaas/providers', test_provider.base_path)
31 self.assertFalse(test_provider.allow_create)
32 self.assertFalse(test_provider.allow_fetch)
33 self.assertFalse(test_provider.allow_commit)
34 self.assertFalse(test_provider.allow_delete)
35 self.assertTrue(test_provider.allow_list)
38 test_provider = provider.Provider(**EXAMPLE)
39 self.assertEqual(EXAMPLE['name'], test_provider.name)
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/metrics/
H A Dmetrics_service_unittest.cc183 TestMetricsProvider* test_provider = new TestMetricsProvider(); in TEST_F() local
185 std::unique_ptr<MetricsProvider>(test_provider)); in TEST_F()
226 TestMetricsProvider* test_provider = new TestMetricsProvider(); in TEST_F() local
227 test_provider->set_has_initial_stability_metrics(true); in TEST_F()
229 std::unique_ptr<MetricsProvider>(test_provider)); in TEST_F()
297 std::unique_ptr<MetricsProvider>(test_provider)); in TEST_F()
344 std::unique_ptr<MetricsProvider>(test_provider)); in TEST_F()
349 EXPECT_TRUE(test_provider->on_recording_disabled_called()); in TEST_F()
359 std::unique_ptr<MetricsProvider>(test_provider)); in TEST_F()
363 EXPECT_TRUE(test_provider->init_called()); in TEST_F()
[all …]
H A Dmetrics_log_unittest.cc316 TestMetricsProvider* test_provider = new TestMetricsProvider(); in TEST_F() local
319 base::WrapUnique<MetricsProvider>(test_provider)); in TEST_F()
325 EXPECT_TRUE(test_provider->provide_initial_stability_metrics_called()); in TEST_F()
326 EXPECT_TRUE(test_provider->provide_stability_metrics_called()); in TEST_F()
332 TestMetricsProvider* test_provider = new TestMetricsProvider(); in TEST_F() local
335 base::WrapUnique<MetricsProvider>(test_provider)); in TEST_F()
342 EXPECT_FALSE(test_provider->provide_initial_stability_metrics_called()); in TEST_F()
343 EXPECT_TRUE(test_provider->provide_stability_metrics_called()); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/metrics/
H A Dmetrics_service_unittest.cc227 TestMetricsProvider* test_provider = new TestMetricsProvider(); in TEST_F() local
229 std::unique_ptr<MetricsProvider>(test_provider)); in TEST_F()
270 TestMetricsProvider* test_provider = new TestMetricsProvider(); in TEST_F() local
271 test_provider->set_has_initial_stability_metrics(true); in TEST_F()
273 std::unique_ptr<MetricsProvider>(test_provider)); in TEST_F()
337 std::unique_ptr<MetricsProvider>(test_provider)); in TEST_F()
380 std::unique_ptr<MetricsProvider>(test_provider)); in TEST_F()
385 EXPECT_TRUE(test_provider->on_recording_disabled_called()); in TEST_F()
395 std::unique_ptr<MetricsProvider>(test_provider)); in TEST_F()
399 EXPECT_TRUE(test_provider->init_called()); in TEST_F()
[all …]
H A Dmetrics_log_unittest.cc347 TestMetricsProvider* test_provider = new TestMetricsProvider(); in TEST_F() local
350 base::WrapUnique<MetricsProvider>(test_provider)); in TEST_F()
356 EXPECT_TRUE(test_provider->provide_initial_stability_metrics_called()); in TEST_F()
357 EXPECT_TRUE(test_provider->provide_stability_metrics_called()); in TEST_F()
363 TestMetricsProvider* test_provider = new TestMetricsProvider(); in TEST_F() local
366 base::WrapUnique<MetricsProvider>(test_provider)); in TEST_F()
373 EXPECT_FALSE(test_provider->provide_initial_stability_metrics_called()); in TEST_F()
374 EXPECT_TRUE(test_provider->provide_stability_metrics_called()); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/credential_provider/gaiacp/
H A Dgaia_credential_other_user_unittests.cc79 Microsoft::WRL::ComPtr<ITestCredentialProvider> test_provider; in TEST_F() local
80 ASSERT_EQ(S_OK, created_provider().As(&test_provider)); in TEST_F()
81 EXPECT_TRUE(test_provider->credentials_changed_fired()); in TEST_F()
98 ASSERT_EQ(S_OK, created_provider().As(&test_provider)); in TEST_F()
99 CComBSTR first_sid = test_provider->sid(); in TEST_F()
110 EXPECT_TRUE(test_provider->credentials_changed_fired()); in TEST_F()
111 EXPECT_EQ(first_sid, test_provider->sid()); in TEST_F()
141 ASSERT_EQ(S_OK, created_provider().As(&test_provider)); in TEST_F()
142 EXPECT_TRUE(test_provider->credentials_changed_fired()); in TEST_F()
144 test_provider->ResetCredentialsChangedFired(); in TEST_F()
[all …]
H A Dgaia_credential_unittests.cc75 Microsoft::WRL::ComPtr<ITestCredentialProvider> test_provider; in TEST_F() local
76 ASSERT_EQ(S_OK, created_provider().As(&test_provider)); in TEST_F()
77 EXPECT_TRUE(test_provider->credentials_changed_fired()); in TEST_F()
94 ASSERT_EQ(S_OK, created_provider().As(&test_provider)); in TEST_F()
95 CComBSTR first_sid = test_provider->sid(); in TEST_F()
106 EXPECT_TRUE(test_provider->credentials_changed_fired()); in TEST_F()
107 EXPECT_EQ(first_sid, test_provider->sid()); in TEST_F()
137 ASSERT_EQ(S_OK, created_provider().As(&test_provider)); in TEST_F()
138 EXPECT_TRUE(test_provider->credentials_changed_fired()); in TEST_F()
140 test_provider->ResetCredentialsChangedFired(); in TEST_F()
[all …]
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/test/
H A Dprovider_fallback_test.c15 static int test_provider(OSSL_LIB_CTX *ctx) in test_provider() function
32 return test_provider(NULL); in test_fallback_provider()
43 && test_provider(ctx) in test_explicit_provider()
H A Dprovider_internal_test.c23 static int test_provider(OSSL_PROVIDER *prov, const char *expected_greeting) in test_provider() function
68 && test_provider(prov, expected_greeting1(name)); in test_builtin_provider()
83 && test_provider(prov, expected_greeting1(name)); in test_loaded_provider()
96 && test_provider(prov, expected_greeting); in test_configured_provider()
H A Dprovider_test.c36 static int test_provider(OSSL_LIB_CTX **libctx, const char *name, in test_provider() function
170 && test_provider(&libctx, name, NULL); in test_builtin_provider()
202 return test_provider(&libctx, name, legacy); in test_builtin_provider_with_child()
216 return test_provider(&libctx, name, NULL); in test_loaded_provider()
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/test/
H A Dprovider_fallback_test.c15 static int test_provider(OSSL_LIB_CTX *ctx) in test_provider() function
32 return test_provider(NULL); in test_fallback_provider()
43 && test_provider(ctx) in test_explicit_provider()
H A Dprovider_internal_test.c23 static int test_provider(OSSL_PROVIDER *prov, const char *expected_greeting) in test_provider() function
68 && test_provider(prov, expected_greeting1(name)); in test_builtin_provider()
83 && test_provider(prov, expected_greeting1(name)); in test_loaded_provider()
96 && test_provider(prov, expected_greeting); in test_configured_provider()
H A Dprovider_test.c36 static int test_provider(OSSL_LIB_CTX **libctx, const char *name,
170 && test_provider(&libctx, name, NULL);
202 return test_provider(&libctx, name, legacy);
216 return test_provider(&libctx, name, NULL);
/dports/security/acmed/acmed-0.18.0/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/test/
H A Dprovider_fallback_test.c15 static int test_provider(OSSL_LIB_CTX *ctx) in test_provider() function
32 return test_provider(NULL); in test_fallback_provider()
43 && test_provider(ctx) in test_explicit_provider()
H A Dprovider_internal_test.c23 static int test_provider(OSSL_PROVIDER *prov, const char *expected_greeting) in test_provider() function
68 && test_provider(prov, expected_greeting1(name)); in test_builtin_provider()
83 && test_provider(prov, expected_greeting1(name)); in test_loaded_provider()
96 && test_provider(prov, expected_greeting); in test_configured_provider()
H A Dprovider_test.c36 static int test_provider(OSSL_LIB_CTX **libctx, const char *name, in test_provider() function
170 && test_provider(&libctx, name, NULL); in test_builtin_provider()
202 return test_provider(&libctx, name, legacy); in test_builtin_provider_with_child()
216 return test_provider(&libctx, name, NULL); in test_loaded_provider()
/dports/textproc/mdbook-linkcheck/mdbook-linkcheck-0.7.6/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/test/
H A Dprovider_fallback_test.c15 static int test_provider(OSSL_LIB_CTX *ctx) in test_provider() function
32 return test_provider(NULL); in test_fallback_provider()
43 && test_provider(ctx) in test_explicit_provider()
H A Dprovider_internal_test.c23 static int test_provider(OSSL_PROVIDER *prov, const char *expected_greeting) in test_provider() function
68 && test_provider(prov, expected_greeting1(name)); in test_builtin_provider()
83 && test_provider(prov, expected_greeting1(name)); in test_loaded_provider()
96 && test_provider(prov, expected_greeting); in test_configured_provider()
/dports/security/openssl-devel/openssl-3.0.2/test/
H A Dprovider_fallback_test.c15 static int test_provider(OSSL_LIB_CTX *ctx) in test_provider() function
32 return test_provider(NULL); in test_fallback_provider()
43 && test_provider(ctx) in test_explicit_provider()
H A Dprovider_internal_test.c23 static int test_provider(OSSL_PROVIDER *prov, const char *expected_greeting) in test_provider() function
68 && test_provider(prov, expected_greeting1(name)); in test_builtin_provider()
83 && test_provider(prov, expected_greeting1(name)); in test_loaded_provider()
96 && test_provider(prov, expected_greeting); in test_configured_provider()
/dports/security/openssl-quictls/openssl-7f2ab56a2b842b8e6fefc7b9d20eb5ff9c6ef151/test/
H A Dprovider_fallback_test.c15 static int test_provider(OSSL_LIB_CTX *ctx) in test_provider() function
32 return test_provider(NULL); in test_fallback_provider()
43 && test_provider(ctx) in test_explicit_provider()
H A Dprovider_internal_test.c23 static int test_provider(OSSL_PROVIDER *prov, const char *expected_greeting) in test_provider() function
68 && test_provider(prov, expected_greeting1(name)); in test_builtin_provider()
83 && test_provider(prov, expected_greeting1(name)); in test_loaded_provider()
96 && test_provider(prov, expected_greeting); in test_configured_provider()
/dports/databases/pglogical/pglogical-REL2_4_0/expected/
H A Dinterfaces.out6 SELECT * FROM pglogical.alter_node_add_interface('test_provider', 'super2', (SELECT provider_dsn FR…
36 test_subscription | replicating | test_provider | {default,default_insert_only,ddl_sql} |
53 SELECT * FROM pglogical.alter_subscription_interface('test_subscription', 'test_provider');
77 test_subscription | replicating | test_provider | {default,default_insert_only,ddl_sql} |
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/web_applications/test/
H A Dtest_web_app_provider.cc43 auto* test_provider = in Get() local
45 CHECK(!test_provider->started_); in Get()
49 test_provider->connected_ = false; in Get()
51 return test_provider; in Get()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/extensions/
H A Dextension_enable_flow_browsertest.cc63 TestManagementProvider test_provider(extension->id()); in IN_PROC_BROWSER_TEST_F() local
64 management_policy->RegisterProvider(&test_provider); in IN_PROC_BROWSER_TEST_F()
85 management_policy->UnregisterProvider(&test_provider); in IN_PROC_BROWSER_TEST_F()

123