@@ -66,6 +66,9 @@ public struct Mock: Equatable {
66
66
67
67
/// The URL value generated based on the Mock data.
68
68
public let url : URL
69
+
70
+ /// If `true`, checking the URL will ignore the query and match only for the scheme, host and path.
71
+ public let ignoreQuery : Bool
69
72
70
73
/// The file extensions to match for.
71
74
public let fileExtensions : [ String ] ?
@@ -76,16 +79,18 @@ public struct Mock: Equatable {
76
79
/// Add a delay to a certain mock, which makes the response returned later.
77
80
public var delay : DispatchTimeInterval ?
78
81
79
- private init ( url: URL ? = nil , dataType: DataType , statusCode: Int , data: [ HTTPMethod : Data ] , additionalHeaders: [ String : String ] = [ : ] , fileExtensions: [ String ] ? = nil ) {
82
+ private init ( url: URL ? = nil , ignoreQuery: Bool = false , dataType: DataType , statusCode: Int , data: [ HTTPMethod : Data ] , additionalHeaders: [ String : String ] = [ : ] , fileExtensions: [ String ] ? = nil ) {
83
+ self . url = url ?? URL ( string: " https://mocked.wetransfer.com/ \( dataType. rawValue) / \( statusCode) / " ) !
84
+ self . ignoreQuery = ignoreQuery
80
85
self . dataType = dataType
81
86
self . statusCode = statusCode
82
87
self . data = data
83
- self . url = url ?? URL ( string: " https://mocked.wetransfer.com/ \( dataType. rawValue) / \( statusCode) / " ) !
84
- self . fileExtensions = fileExtensions? . map ( { $0. replacingOccurrences ( of: " . " , with: " " ) } )
85
-
88
+
86
89
var headers = additionalHeaders
87
90
headers [ " Content-Type " ] = dataType. headerValue
88
91
self . headers = headers
92
+
93
+ self . fileExtensions = fileExtensions? . map ( { $0. replacingOccurrences ( of: " . " , with: " " ) } )
89
94
}
90
95
91
96
/// Creates a `Mock` for the given data type. The mock will be automatically matched based on a URL created from the given parameters.
@@ -103,12 +108,13 @@ public struct Mock: Equatable {
103
108
///
104
109
/// - Parameters:
105
110
/// - url: The URL to match for and to return the mocked data for.
111
+ /// - ignoreQuery: If `true`, checking the URL will ignore the query and match only for the scheme, host and path. Defaults to `false`.
106
112
/// - dataType: The type of the data which is returned.
107
113
/// - statusCode: The HTTP status code to return with the response.
108
114
/// - data: The data which will be returned as the response based on the HTTP Method.
109
115
/// - additionalHeaders: Additional headers to be added to the response.
110
- public init ( url: URL , dataType: DataType , statusCode: Int , data: [ HTTPMethod : Data ] , additionalHeaders: [ String : String ] = [ : ] ) {
111
- self . init ( url: url, dataType: dataType, statusCode: statusCode, data: data, additionalHeaders: additionalHeaders, fileExtensions: nil )
116
+ public init ( url: URL , ignoreQuery : Bool = false , dataType: DataType , statusCode: Int , data: [ HTTPMethod : Data ] , additionalHeaders: [ String : String ] = [ : ] ) {
117
+ self . init ( url: url, ignoreQuery : ignoreQuery , dataType: dataType, statusCode: statusCode, data: data, additionalHeaders: additionalHeaders, fileExtensions: nil )
112
118
}
113
119
114
120
/// Creates a `Mock` for the given file extensions. The mock will only be used for urls matching the extension.
@@ -145,9 +151,11 @@ public struct Mock: Equatable {
145
151
// If the mock contains a file extension, this should always be used to match for.
146
152
guard let pathExtension = request. url? . pathExtension else { return false }
147
153
return fileExtensions. contains ( pathExtension)
148
- } else {
149
- return mock. url == request. url && mock. data. keys. contains ( requestHTTPMethod)
154
+ } else if mock . ignoreQuery {
155
+ return mock. url. baseString == request. url? . baseString && mock. data. keys. contains ( requestHTTPMethod)
150
156
}
157
+
158
+ return mock. url == request. url && mock. data. keys. contains ( requestHTTPMethod)
151
159
}
152
160
153
161
public static func == ( lhs: Mock , rhs: Mock ) -> Bool {
@@ -156,3 +164,11 @@ public struct Mock: Equatable {
156
164
return lhs. url. absoluteString == rhs. url. absoluteString && lhsHTTPMethods == rhsHTTPMethods
157
165
}
158
166
}
167
+
168
+ private extension URL {
169
+ /// Returns the base URL string build with the scheme, host and path. "https://www.wetransfer.com/v1/test?param=test" would be "https://www.wetransfer.com/v1/test".
170
+ var baseString : String ? {
171
+ guard let scheme = scheme, let host = host else { return nil }
172
+ return scheme + " :// " + host + path
173
+ }
174
+ }
0 commit comments