From 20f419171a5ead6f2cfaa412784bb6bf53e3ec1d Mon Sep 17 00:00:00 2001
From: Dariusz Rybicki <dariusz@elixxir.io>
Date: Sat, 12 Nov 2022 11:37:15 +0100
Subject: [PATCH] Refactor

Rename MessengerGetNotificationReport to MessengerGetNotificationReports
---
 ...t.swift => MessengerGetNotificationReports.swift} | 12 ++++++------
 Sources/XXMessengerClient/Messenger/Messenger.swift  |  6 +++---
 ...ft => MessengerGetNotificationReportsTests.swift} | 12 ++++++------
 3 files changed, 15 insertions(+), 15 deletions(-)
 rename Sources/XXMessengerClient/Messenger/Functions/{MessengerGetNotificationReport.swift => MessengerGetNotificationReports.swift} (76%)
 rename Tests/XXMessengerClientTests/Messenger/Functions/{MessengerGetNotificationReportTests.swift => MessengerGetNotificationReportsTests.swift} (81%)

diff --git a/Sources/XXMessengerClient/Messenger/Functions/MessengerGetNotificationReport.swift b/Sources/XXMessengerClient/Messenger/Functions/MessengerGetNotificationReports.swift
similarity index 76%
rename from Sources/XXMessengerClient/Messenger/Functions/MessengerGetNotificationReport.swift
rename to Sources/XXMessengerClient/Messenger/Functions/MessengerGetNotificationReports.swift
index 0b7de4fa..b2496c22 100644
--- a/Sources/XXMessengerClient/Messenger/Functions/MessengerGetNotificationReport.swift
+++ b/Sources/XXMessengerClient/Messenger/Functions/MessengerGetNotificationReports.swift
@@ -1,7 +1,7 @@
 import XXClient
 import XCTestDynamicOverlay
 
-public struct MessengerGetNotificationReport {
+public struct MessengerGetNotificationReports {
   public enum Error: Swift.Error, Equatable {
     case serviceListMissing
   }
@@ -13,9 +13,9 @@ public struct MessengerGetNotificationReport {
   }
 }
 
-extension MessengerGetNotificationReport {
-  public static func live(_ env: MessengerEnvironment) -> MessengerGetNotificationReport {
-    MessengerGetNotificationReport { notificationCSV in
+extension MessengerGetNotificationReports {
+  public static func live(_ env: MessengerEnvironment) -> MessengerGetNotificationReports {
+    MessengerGetNotificationReports { notificationCSV in
       guard let serviceList = env.serviceList() else {
         throw Error.serviceListMissing
       }
@@ -27,8 +27,8 @@ extension MessengerGetNotificationReport {
   }
 }
 
-extension MessengerGetNotificationReport {
-  public static let unimplemented = MessengerGetNotificationReport(
+extension MessengerGetNotificationReports {
+  public static let unimplemented = MessengerGetNotificationReports(
     run: XCTUnimplemented("\(Self.self)")
   )
 }
diff --git a/Sources/XXMessengerClient/Messenger/Messenger.swift b/Sources/XXMessengerClient/Messenger/Messenger.swift
index d0bf6e46..9261d264 100644
--- a/Sources/XXMessengerClient/Messenger/Messenger.swift
+++ b/Sources/XXMessengerClient/Messenger/Messenger.swift
@@ -47,7 +47,7 @@ public struct Messenger {
   public var sendFile: MessengerSendFile
   public var receiveFile: MessengerReceiveFile
   public var trackServices: MessengerTrackServices
-  public var getNotificationReport: MessengerGetNotificationReport
+  public var getNotificationReports: MessengerGetNotificationReports
 }
 
 extension Messenger {
@@ -99,7 +99,7 @@ extension Messenger {
       sendFile: .live(env),
       receiveFile: .live(env),
       trackServices: .live(env),
-      getNotificationReport: .live(env)
+      getNotificationReports: .live(env)
     )
   }
 }
@@ -152,6 +152,6 @@ extension Messenger {
     sendFile: .unimplemented,
     receiveFile: .unimplemented,
     trackServices: .unimplemented,
-    getNotificationReport: .unimplemented
+    getNotificationReports: .unimplemented
   )
 }
diff --git a/Tests/XXMessengerClientTests/Messenger/Functions/MessengerGetNotificationReportTests.swift b/Tests/XXMessengerClientTests/Messenger/Functions/MessengerGetNotificationReportsTests.swift
similarity index 81%
rename from Tests/XXMessengerClientTests/Messenger/Functions/MessengerGetNotificationReportTests.swift
rename to Tests/XXMessengerClientTests/Messenger/Functions/MessengerGetNotificationReportsTests.swift
index 7d778c0d..98e1adce 100644
--- a/Tests/XXMessengerClientTests/Messenger/Functions/MessengerGetNotificationReportTests.swift
+++ b/Tests/XXMessengerClientTests/Messenger/Functions/MessengerGetNotificationReportsTests.swift
@@ -4,7 +4,7 @@ import XCTestDynamicOverlay
 import XXClient
 @testable import XXMessengerClient
 
-final class MessengerGetNotificationReportTests: XCTestCase {
+final class MessengerGetNotificationReportsTests: XCTestCase {
   func testGetReport() throws {
     let serviceList = MessageServiceList.stub()
     let notificationCSV = "notification-csv"
@@ -27,9 +27,9 @@ final class MessengerGetNotificationReportTests: XCTestCase {
       ))
       return notificationReports
     }
-    let getReport: MessengerGetNotificationReport = .live(env)
+    let getReports: MessengerGetNotificationReports = .live(env)
 
-    let reports = try getReport(notificationCSV: notificationCSV)
+    let reports = try getReports(notificationCSV: notificationCSV)
 
     XCTAssertNoDifference(didGetNotificationsReport, [
       .init(
@@ -44,11 +44,11 @@ final class MessengerGetNotificationReportTests: XCTestCase {
     var env: MessengerEnvironment = .unimplemented
     env.e2e.get = { .unimplemented }
     env.serviceList.get = { nil }
-    let getReport: MessengerGetNotificationReport = .live(env)
+    let getReports: MessengerGetNotificationReports = .live(env)
 
-    XCTAssertThrowsError(try getReport(notificationCSV: "")) { error in
+    XCTAssertThrowsError(try getReports(notificationCSV: "")) { error in
       XCTAssertNoDifference(
-        error as? MessengerGetNotificationReport.Error,
+        error as? MessengerGetNotificationReports.Error,
         .serviceListMissing
       )
     }
-- 
GitLab