mirror of
https://github.com/twofas/2fas-ios.git
synced 2024-11-22 18:29:56 +01:00
145 lines
8.1 KiB
Plaintext
145 lines
8.1 KiB
Plaintext
//
|
|
// This file is part of the 2FAS iOS app (https://github.com/twofas/2fas-ios)
|
|
// Copyright © 2023 Two Factor Authentication Service, Inc.
|
|
// Contributed by Zbigniew Cisiński. All rights reserved.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>
|
|
//
|
|
|
|
// swiftlint:disable all
|
|
|
|
import Foundation
|
|
#if os(iOS) || os(tvOS) || os(watchOS)
|
|
import UIKit
|
|
#elseif os(OSX)
|
|
import AppKit
|
|
#endif
|
|
|
|
@testable import TwoFAS
|
|
@testable import Common
|
|
|
|
{% macro swiftifyMethodName name %}{{ name | replace:"(","_" | replace:")","" | replace:":","_" | replace:"`","" | snakeToCamelCase | lowerFirstWord }}{% endmacro %}
|
|
|
|
{% macro methodThrowableErrorDeclaration method %}
|
|
{{ type.accessLevel }} var {% call swiftifyMethodName method.selectorName %}ThrowableError: Error?
|
|
{% endmacro %}
|
|
|
|
{% macro methodThrowableErrorUsage method %}
|
|
if let error = {% call swiftifyMethodName method.selectorName %}ThrowableError {
|
|
throw error
|
|
}
|
|
{% endmacro %}
|
|
|
|
{% macro methodReceivedParameters method %}
|
|
{%if method.parameters.count == 1 %}
|
|
{% call swiftifyMethodName method.selectorName %}Received{% for param in method.parameters %}{{ param.name|upperFirstLetter }} = {{ param.name }}{% endfor %}
|
|
{% call swiftifyMethodName method.selectorName %}ReceivedInvocations.append({% for param in method.parameters %}{{ param.name }}){% endfor %}
|
|
{% else %}
|
|
{% if not method.parameters.count == 0 %}
|
|
{% call swiftifyMethodName method.selectorName %}ReceivedArguments = ({% for param in method.parameters %}{{ param.name }}: {{ param.name }}{% if not forloop.last%}, {% endif %}{% endfor %})
|
|
{% call swiftifyMethodName method.selectorName %}ReceivedInvocations.append(({% for param in method.parameters %}{{ param.name }}: {{ param.name }}{% if not forloop.last%}, {% endif %}{% endfor %}))
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endmacro %}
|
|
|
|
{% macro methodClosureName method %}{% call swiftifyMethodName method.selectorName %}Closure{% endmacro %}
|
|
|
|
{% macro closureReturnTypeName method %}{% if method.isOptionalReturnType %}{{ method.unwrappedReturnTypeName }}?{% else %}{{ method.returnTypeName }}{% endif %}{% endmacro %}
|
|
|
|
{% macro methodClosureDeclaration method %}
|
|
{{ type.accessLevel }} var {% call methodClosureName method %}: (({% for param in method.parameters %}{{ param.typeName }}{% if not forloop.last %}, {% endif %}{% endfor %}) {% if method.throws %}throws {% endif %}-> {% if method.isInitializer %}Void{% else %}{% call closureReturnTypeName method %}{% endif %})?
|
|
{% endmacro %}
|
|
|
|
{% macro methodClosureCallParameters method %}{% for param in method.parameters %}{{ param.name }}{% if not forloop.last %}, {% endif %}{% endfor %}{% endmacro %}
|
|
|
|
{% macro mockMethod method %}
|
|
//MARK: - {{ method.shortName }}
|
|
|
|
{% if method.throws %}
|
|
{% call methodThrowableErrorDeclaration method %}
|
|
{% endif %}
|
|
{% if not method.isInitializer %}
|
|
{{ type.accessLevel }} var {% call swiftifyMethodName method.selectorName %}CallsCount = 0
|
|
{{ type.accessLevel }} var {% call swiftifyMethodName method.selectorName %}Called: Bool {
|
|
return {% call swiftifyMethodName method.selectorName %}CallsCount > 0
|
|
}
|
|
{% endif %}
|
|
{% if method.parameters.count == 1 %}
|
|
{{ type.accessLevel }} var {% call swiftifyMethodName method.selectorName %}Received{% for param in method.parameters %}{{ param.name|upperFirstLetter }}: {{ '(' if param.isClosure }}{{ param.typeName.unwrappedTypeName }}{{ ')' if param.isClosure }}?{% endfor %}
|
|
{{ type.accessLevel }} var {% call swiftifyMethodName method.selectorName %}ReceivedInvocations{% for param in method.parameters %}: [{{ '(' if param.isClosure }}{{ param.typeName.unwrappedTypeName }}{{ ')' if param.isClosure }}{%if param.typeName.isOptional%}?{%endif%}]{% endfor %} = []
|
|
{% elif not method.parameters.count == 0 %}
|
|
{{ type.accessLevel }} var {% call swiftifyMethodName method.selectorName %}ReceivedArguments: ({% for param in method.parameters %}{{ param.name }}: {{ param.unwrappedTypeName if param.typeAttributes.escaping else param.typeName }}{{ ', ' if not forloop.last }}{% endfor %})?
|
|
{{ type.accessLevel }} var {% call swiftifyMethodName method.selectorName %}ReceivedInvocations: [({% for param in method.parameters %}{{ param.name }}: {{ param.unwrappedTypeName if param.typeAttributes.escaping else param.typeName }}{{ ', ' if not forloop.last }}{% endfor %})] = []
|
|
{% endif %}
|
|
{% if not method.returnTypeName.isVoid and not method.isInitializer %}
|
|
{{ type.accessLevel }} var {% call swiftifyMethodName method.selectorName %}ReturnValue: {{ '(' if method.returnTypeName.isClosure and not method.isOptionalReturnType }}{{ method.returnTypeName }}{{ ')' if method.returnTypeName.isClosure and not method.isOptionalReturnType }}{{ '!' if not method.isOptionalReturnType }}
|
|
{% endif %}
|
|
{% call methodClosureDeclaration method %}
|
|
|
|
{% if method.isInitializer %}
|
|
required {{ method.name }} {
|
|
{% call methodReceivedParameters method %}
|
|
{% call methodClosureName method %}?({% call methodClosureCallParameters method %})
|
|
}
|
|
{% else %}
|
|
{{ type.accessLevel }} func {{ method.name }}{{ ' throws' if method.throws }}{% if not method.returnTypeName.isVoid %} -> {{ method.returnTypeName }}{% endif %} {
|
|
{% if method.throws %}
|
|
{% call methodThrowableErrorUsage method %}
|
|
{% endif %}
|
|
{% call swiftifyMethodName method.selectorName %}CallsCount += 1
|
|
{% call methodReceivedParameters method %}
|
|
{% if method.returnTypeName.isVoid %}
|
|
{% if method.throws %}try {% endif %}{% call methodClosureName method %}?({% call methodClosureCallParameters method %})
|
|
{% else %}
|
|
return {{ 'try ' if method.throws }}{% call methodClosureName method %}.map({ {{ 'try ' if method.throws }}$0({% call methodClosureCallParameters method %}) }) ?? {% call swiftifyMethodName method.selectorName %}ReturnValue
|
|
{% endif %}
|
|
}
|
|
|
|
{% endif %}
|
|
{% endmacro %}
|
|
|
|
{% macro mockOptionalVariable variable %}
|
|
{{ type.accessLevel }} var {% call mockedVariableName variable %}: {{ variable.typeName }}
|
|
{% endmacro %}
|
|
|
|
{% macro mockNonOptionalArrayOrDictionaryVariable variable %}
|
|
{{ type.accessLevel }} var {% call mockedVariableName variable %}: {{ variable.typeName }} = {% if variable.isArray %}[]{% elif variable.isDictionary %}[:]{% endif %}
|
|
{% endmacro %}
|
|
|
|
{% macro mockNonOptionalVariable variable %}
|
|
{{ type.accessLevel }} var {% call mockedVariableName variable %}: {{ variable.typeName }} {
|
|
get { return {% call underlyingMockedVariableName variable %} }
|
|
set(value) { {% call underlyingMockedVariableName variable %} = value }
|
|
}
|
|
{{ type.accessLevel }} var {% call underlyingMockedVariableName variable %}: {{ variable.typeName }}!
|
|
{% endmacro %}
|
|
|
|
{% macro underlyingMockedVariableName variable %}underlying{{ variable.name|upperFirstLetter }}{% endmacro %}
|
|
{% macro mockedVariableName variable %}{{ variable.name }}{% endmacro %}
|
|
|
|
{% for type in types.protocols where type.based.Mock or type|annotated:"Mock" %}{% if type.name != "Mock" %}
|
|
{{ type.accessLevel }} final class {{ type.name }}Mock: {{ type.name }} {
|
|
{% for variable in type.allVariables|!definedInExtension %}
|
|
{% if variable.isOptional %}{% call mockOptionalVariable variable %}{% elif variable.isArray or variable.isDictionary %}{% call mockNonOptionalArrayOrDictionaryVariable variable %}{% else %}{% call mockNonOptionalVariable variable %}{% endif %}
|
|
{% endfor %}
|
|
|
|
{% for method in type.allMethods|!definedInExtension %}
|
|
{% call mockMethod method %}
|
|
{% endfor %}
|
|
|
|
{{ type.accessLevel }} init() {}
|
|
}
|
|
{% endif %}{% endfor %}
|
|
// swiftlint:enable all
|