From c73cc2805bc8f61e06492cb427bc1fd6da6c83a8 Mon Sep 17 00:00:00 2001
From: Dariusz Rybicki <dariusz@elixxir.io>
Date: Mon, 25 Jul 2022 15:30:25 +0100
Subject: [PATCH] Add E2EGetReceptionId functor

---
 Sources/ElixxirDAppsSDK/E2E.swift             |  7 +++--
 .../ElixxirDAppsSDK/E2EGetReceptionId.swift   | 27 +++++++++++++++++++
 2 files changed, 32 insertions(+), 2 deletions(-)
 create mode 100644 Sources/ElixxirDAppsSDK/E2EGetReceptionId.swift

diff --git a/Sources/ElixxirDAppsSDK/E2E.swift b/Sources/ElixxirDAppsSDK/E2E.swift
index bd0aa849..da868b33 100644
--- a/Sources/ElixxirDAppsSDK/E2E.swift
+++ b/Sources/ElixxirDAppsSDK/E2E.swift
@@ -2,6 +2,7 @@ import Bindings
 
 public struct E2E {
   public var getId: E2EGetId
+  public var getReceptionId: E2EGetReceptionId
 
   // TODO:
 }
@@ -9,13 +10,15 @@ public struct E2E {
 extension E2E {
   public static func live(_ bindingsE2E: BindingsE2e) -> E2E {
     E2E(
-      getId: .live(bindingsE2E: bindingsE2E)
+      getId: .live(bindingsE2E: bindingsE2E),
+      getReceptionId: .live(bindingsE2E: bindingsE2E)
     )
   }
 }
 
 extension E2E {
   public static let unimplemented = E2E(
-    getId: .unimplemented
+    getId: .unimplemented,
+    getReceptionId: .unimplemented
   )
 }
diff --git a/Sources/ElixxirDAppsSDK/E2EGetReceptionId.swift b/Sources/ElixxirDAppsSDK/E2EGetReceptionId.swift
new file mode 100644
index 00000000..7bbbcc40
--- /dev/null
+++ b/Sources/ElixxirDAppsSDK/E2EGetReceptionId.swift
@@ -0,0 +1,27 @@
+import Bindings
+import XCTestDynamicOverlay
+
+public struct E2EGetReceptionId {
+  public var run: () -> Data
+
+  public func callAsFunction() -> Data {
+    run()
+  }
+}
+
+extension E2EGetReceptionId {
+  public static func live(bindingsE2E: BindingsE2e) -> E2EGetReceptionId {
+    E2EGetReceptionId {
+      guard let data = bindingsE2E.getReceptionID() else {
+        fatalError("BindingsE2e.getReceptionID returned `nil`")
+      }
+      return data
+    }
+  }
+}
+
+extension E2EGetReceptionId {
+  public static let unimplemented = E2EGetReceptionId(
+    run: XCTUnimplemented("\(Self.self)")
+  )
+}
-- 
GitLab