summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration
diff options
context:
space:
mode:
authoraltaf-creator <dev@altafcreator.com>2025-11-16 19:08:29 +0800
committeraltaf-creator <dev@altafcreator.com>2025-11-16 19:08:29 +0800
commit434aa8343fdcbb4d5002f934979913c099489bee (patch)
tree55bab4ec5a6151be57797d34f61faf5ea744471b /frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration
parent893c388d4e99442a36005e5971a87730623f946e (diff)
sdk, del
Diffstat (limited to 'frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration')
-rw-r--r--frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/flows/middleware_test_generator.d.ts18
-rw-r--r--frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/auth_driver.d.ts46
-rw-r--r--frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/functions.d.ts81
-rw-r--r--frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/idp_page.d.ts31
-rw-r--r--frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/js_load_condition.d.ts25
-rw-r--r--frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/test_runner.d.ts19
-rw-r--r--frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/test_server.d.ts27
-rw-r--r--frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/ui_page.d.ts33
8 files changed, 0 insertions, 280 deletions
diff --git a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/flows/middleware_test_generator.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/flows/middleware_test_generator.d.ts
deleted file mode 100644
index 4ab1adb..0000000
--- a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/flows/middleware_test_generator.d.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-/**
- * @license
- * Copyright 2022 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-import { Auth } from '@firebase/auth';
-export declare function generateMiddlewareTests(authGetter: () => Auth, signIn: () => Promise<unknown>): void;
diff --git a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/auth_driver.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/auth_driver.d.ts
deleted file mode 100644
index 1d9392f..0000000
--- a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/auth_driver.d.ts
+++ /dev/null
@@ -1,46 +0,0 @@
-/**
- * @license
- * Copyright 2020 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-import { Auth, User, Persistence } from '@firebase/auth';
-import { WebDriver } from 'selenium-webdriver';
-export declare const START_FUNCTION = "startAuth";
-/** Helper wrapper around the WebDriver object */
-export declare class AuthDriver {
- webDriver: WebDriver;
- start(browser: string): Promise<void>;
- stop(): Promise<void>;
- call<T>(fn: string, ...args: unknown[]): Promise<T>;
- callNoWait(fn: string, ...args: unknown[]): Promise<void>;
- getAuthSnapshot(): Promise<Auth>;
- getUserSnapshot(): Promise<User>;
- reset(): Promise<void>;
- goToTestPage(): Promise<void>;
- waitForAuthInit(): Promise<void>;
- waitForLegacyAuthInit(): Promise<void>;
- reinitOnRedirect(): Promise<void>;
- pause(ms: number): Promise<void>;
- refresh(): Promise<void>;
- private injectConfig;
- injectConfigAndInitAuth(): Promise<void>;
- injectConfigAndInitLegacySDK(persistence?: Persistence['type']): Promise<void>;
- selectPopupWindow(): Promise<void>;
- selectMainWindow(options?: {
- noWait?: boolean;
- }): Promise<void>;
- closePopup(): Promise<void>;
- closeExtraWindows(): Promise<void>;
- isCompatLayer(): boolean;
-}
diff --git a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/functions.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/functions.d.ts
deleted file mode 100644
index 66d648b..0000000
--- a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/functions.d.ts
+++ /dev/null
@@ -1,81 +0,0 @@
-/**
- * @license
- * Copyright 2020 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-/** Available in the browser. See static/anonymous.js */
-export declare enum AnonFunction {
- SIGN_IN_ANONYMOUSLY = "anonymous.anonymousSignIn"
-}
-/** Available redirect functions. See static/redirect.js */
-export declare enum RedirectFunction {
- IDP_REDIRECT = "redirect.idpRedirect",
- IDP_REAUTH_REDIRECT = "redirect.idpReauthRedirect",
- IDP_LINK_REDIRECT = "redirect.idpLinkRedirect",
- REDIRECT_RESULT = "redirect.redirectResult",
- GENERATE_CREDENTIAL_FROM_RESULT = "redirect.generateCredentialFromRedirectResultAndStore",
- SIGN_IN_WITH_REDIRECT_CREDENTIAL = "redirect.signInWithRedirectCredential",
- LINK_WITH_ERROR_CREDENTIAL = "redirect.linkWithErrorCredential",
- CREATE_FAKE_GOOGLE_USER = "redirect.createFakeGoogleUser",
- TRY_TO_SIGN_IN_UNVERIFIED = "redirect.tryToSignInUnverified"
-}
-/** Available popup functions. See static/popup.js */
-export declare enum PopupFunction {
- IDP_POPUP = "popup.idpPopup",
- IDP_REAUTH_POPUP = "popup.idpReauthPopup",
- IDP_LINK_POPUP = "popup.idpLinkPopup",
- POPUP_RESULT = "popup.popupResult",
- GENERATE_CREDENTIAL_FROM_RESULT = "popup.generateCredentialFromResult",
- SIGN_IN_WITH_POPUP_CREDENTIAL = "popup.signInWithPopupCredential",
- LINK_WITH_ERROR_CREDENTIAL = "popup.linkWithErrorCredential",
- CREATE_FAKE_GOOGLE_USER = "popup.createFakeGoogleUser",
- TRY_TO_SIGN_IN_UNVERIFIED = "popup.tryToSignInUnverified"
-}
-/** Available email functions. See static/email.js */
-export declare enum EmailFunction {
- CREATE_USER = "email.createUser"
-}
-/** Available core functions within the browser. See static/core.js */
-export declare enum CoreFunction {
- RESET = "core.reset",
- AWAIT_AUTH_INIT = "core.authInit",
- USER_SNAPSHOT = "core.userSnap",
- AUTH_SNAPSHOT = "core.authSnap",
- SIGN_OUT = "core.signOut",
- AWAIT_LEGACY_AUTH_INIT = "core.legacyAuthInit",
- LEGACY_USER_SNAPSHOT = "core.legacyUserSnap"
-}
-/** Available persistence functions within the browser. See static/persistence.js */
-export declare enum PersistenceFunction {
- CLEAR_PERSISTENCE = "persistence.clearPersistence",
- LOCAL_STORAGE_SNAP = "persistence.localStorageSnap",
- LOCAL_STORAGE_SET = "persistence.localStorageSet",
- SESSION_STORAGE_SNAP = "persistence.sessionStorageSnap",
- SESSION_STORAGE_SET = "persistence.sessionStorageSet",
- INDEXED_DB_SNAP = "persistence.indexedDBSnap",
- MAKE_INDEXED_DB_READONLY = "persistence.makeIndexedDBReadonly",
- SET_PERSISTENCE_MEMORY = "persistence.setPersistenceMemory",
- SET_PERSISTENCE_SESSION = "persistence.setPersistenceSession",
- SET_PERSISTENCE_INDEXED_DB = "persistence.setPersistenceIndexedDB",
- SET_PERSISTENCE_LOCAL_STORAGE = "persistence.setPersistenceLocalStorage"
-}
-export declare enum MiddlewareFunction {
- ATTACH_BLOCKING_MIDDLEWARE = "middleware.attachBlockingMiddleware",
- ATTACH_BLOCKING_MIDDLEWARE_ON_START = "middleware.attachBlockingMiddlewareOnStart"
-}
-/** Available firebase UI functions (only for compat tests) */
-export declare enum UiFunction {
- LOAD = "ui.loadUiCode",
- START = "ui.startUi"
-}
diff --git a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/idp_page.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/idp_page.d.ts
deleted file mode 100644
index 2d30eb7..0000000
--- a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/idp_page.d.ts
+++ /dev/null
@@ -1,31 +0,0 @@
-/**
- * @license
- * Copyright 2020 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-import { WebDriver } from 'selenium-webdriver';
-export declare class IdPPage {
- private readonly driver;
- static PAGE_TITLE: string;
- constructor(driver: WebDriver);
- pageLoad(): Promise<void>;
- clickAddAccount(): Promise<void>;
- clickSignIn(): Promise<void>;
- selectExistingAccountByEmail(email: string): Promise<void>;
- fillEmail(email: string): Promise<void>;
- fillDisplayName(displayName: string): Promise<void>;
- fillScreenName(screenName: string): Promise<void>;
- fillProfilePhoto(profilePhoto: string): Promise<void>;
- private fillInput;
-}
diff --git a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/js_load_condition.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/js_load_condition.d.ts
deleted file mode 100644
index a1a0157..0000000
--- a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/js_load_condition.d.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-/**
- * @license
- * Copyright 2020 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-import { Condition } from 'selenium-webdriver';
-/**
- * A condition that looks for the presence of a specified function. This is
- * used with WebDriver .wait() as a proxy for determining when the JS has
- * finished loading in a page.
- */
-export declare class JsLoadCondition extends Condition<boolean> {
- constructor(globalValue: string);
-}
diff --git a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/test_runner.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/test_runner.d.ts
deleted file mode 100644
index 8986a26..0000000
--- a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/test_runner.d.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-/**
- * @license
- * Copyright 2020 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-import { AuthDriver } from './auth_driver';
-/** Main entry point for all WebDriver tests */
-export declare function browserDescribe(title: string, generator: (driver: AuthDriver, browser: string) => void): void;
diff --git a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/test_server.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/test_server.d.ts
deleted file mode 100644
index 626807c..0000000
--- a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/test_server.d.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-/**
- * @license
- * Copyright 2020 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-/** Simple express server for serving up the static files for testing */
-declare class AuthTestServer {
- private app;
- private server;
- constructor();
- get address(): string;
- start(): Promise<void>;
- stop(): void;
-}
-export declare const authTestServer: AuthTestServer;
-export {};
diff --git a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/ui_page.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/ui_page.d.ts
deleted file mode 100644
index 295c21c..0000000
--- a/frontend-old/node_modules/@firebase/auth/dist/node-esm/test/integration/webdriver/util/ui_page.d.ts
+++ /dev/null
@@ -1,33 +0,0 @@
-/**
- * @license
- * Copyright 2021 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-import { WebDriver } from 'selenium-webdriver';
-export declare class UiPage {
- private readonly driver;
- constructor(driver: WebDriver);
- clickGuestSignIn(): Promise<void>;
- clickGoogleSignIn(): Promise<void>;
- clickPhoneSignIn(): Promise<void>;
- clickEmailSignIn(): Promise<void>;
- clickSubmit(): Promise<void>;
- enterPhoneNumber(phoneNumber: string): Promise<void>;
- waitForCodeInputToBePresent(): Promise<void>;
- enterPhoneCode(code: string): Promise<void>;
- enterEmail(email: string): Promise<void>;
- enterEmailDisplayName(name: string): Promise<void>;
- enterPassword(name: string): Promise<void>;
- private fillInput;
-}