aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Auth/SwiftSample/Stubs.swift
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-09-19 11:18:04 -0700
committerGravatar GitHub <noreply@github.com>2017-09-19 11:18:04 -0700
commit9447e72cab40c9ea59e49a726d2890bcf356d38a (patch)
treedc25e027769cc1fbe6bd6e0ae0d877858e0780e7 /Example/Auth/SwiftSample/Stubs.swift
parenta34d091971d05ef8e2625074157eb9ff6dda3cbd (diff)
Consolidate AuthSamples into main Firebase Xcode project (#288)
Diffstat (limited to 'Example/Auth/SwiftSample/Stubs.swift')
-rw-r--r--Example/Auth/SwiftSample/Stubs.swift45
1 files changed, 45 insertions, 0 deletions
diff --git a/Example/Auth/SwiftSample/Stubs.swift b/Example/Auth/SwiftSample/Stubs.swift
new file mode 100644
index 0000000..6733c4d
--- /dev/null
+++ b/Example/Auth/SwiftSample/Stubs.swift
@@ -0,0 +1,45 @@
+/*
+ * Copyright 2017 Google
+ *
+ * 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.
+ */
+
+/// This file contains a collection of stub functions to verify the Swift syntax of Firebase Auth
+/// APIs in Swift for those that are not already covered by other parts of the app.
+/// These functions are never executed, but just for passing compilation.
+
+import FirebaseCommunity.FirebaseAuth
+
+func actionCodeSettingsStubs() {
+ let actionCodeSettings = ActionCodeSettings()
+ actionCodeSettings.url = URL(string: "http://some.url/path/")
+ actionCodeSettings.setIOSBundleID("some.bundle.id")
+ actionCodeSettings.setAndroidPackageName("some.package.name", installIfNotAvailable: true,
+ minimumVersion: nil)
+ let _: String? = actionCodeSettings.iOSBundleID
+ let _: String? = actionCodeSettings.androidPackageName
+ let _: Bool = actionCodeSettings.androidInstallIfNotAvailable
+ let _: String? = actionCodeSettings.androidMinimumVersion
+ Auth.auth().sendPasswordReset(withEmail: "nobody@nowhere.com",
+ actionCodeSettings: actionCodeSettings) { (error: Error?) -> () in
+ }
+ Auth.auth().currentUser?.sendEmailVerification(with: actionCodeSettings) {
+ (error: Error?) -> () in
+ }
+}
+
+func languageStubs() {
+ let _: String? = Auth.auth().languageCode
+ Auth.auth().languageCode = "asdf"
+ Auth.auth().useAppLanguage()
+}