-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathMockFeatureFlagService.swift
124 lines (121 loc) · 5.69 KB
/
MockFeatureFlagService.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@testable import WooCommerce
import Experiments
final class MockFeatureFlagService: FeatureFlagService {
var isInboxOn: Bool
var isShowInboxCTAEnabled: Bool
var isUpdateOrderOptimisticallyOn: Bool
var shippingLabelsOnboardingM1: Bool
var isDomainSettingsEnabled: Bool
var isSupportRequestEnabled: Bool
var jetpackSetupWithApplicationPassword: Bool
var betterCustomerSelectionInOrder: Bool
var productBundlesInOrderForm: Bool
var isScanToUpdateInventoryEnabled: Bool
var sideBySideViewForOrderForm: Bool
var isSubscriptionsInOrderCreationCustomersEnabled: Bool
var isPointOfSaleEnabled: Bool
var googleAdsCampaignCreationOnWebView: Bool
var blazeEvergreenCampaigns: Bool
var blazeCampaignObjective: Bool
var revampedShippingLabelCreation: Bool
var viewEditCustomFieldsInProductsAndOrders: Bool
var favoriteProducts: Bool
var isProductGlobalUniqueIdentifierSupported: Bool
var hideSitesInStorePicker: Bool
var backgroundProductImageUpload: Bool
init(isInboxOn: Bool = false,
isShowInboxCTAEnabled: Bool = false,
isUpdateOrderOptimisticallyOn: Bool = false,
shippingLabelsOnboardingM1: Bool = false,
isDomainSettingsEnabled: Bool = false,
isSupportRequestEnabled: Bool = false,
jetpackSetupWithApplicationPassword: Bool = false,
betterCustomerSelectionInOrder: Bool = false,
productBundlesInOrderForm: Bool = false,
isScanToUpdateInventoryEnabled: Bool = false,
sideBySideViewForOrderForm: Bool = false,
isSubscriptionsInOrderCreationCustomersEnabled: Bool = false,
isPointOfSaleEnabled: Bool = false,
googleAdsCampaignCreationOnWebView: Bool = false,
blazeEvergreenCampaigns: Bool = false,
blazeCampaignObjective: Bool = false,
revampedShippingLabelCreation: Bool = false,
viewEditCustomFieldsInProductsAndOrders: Bool = false,
favoriteProducts: Bool = false,
isProductGlobalUniqueIdentifierSupported: Bool = false,
hideSitesInStorePicker: Bool = false,
backgroundProductImageUpload: Bool = false) {
self.isInboxOn = isInboxOn
self.isShowInboxCTAEnabled = isShowInboxCTAEnabled
self.isUpdateOrderOptimisticallyOn = isUpdateOrderOptimisticallyOn
self.shippingLabelsOnboardingM1 = shippingLabelsOnboardingM1
self.isDomainSettingsEnabled = isDomainSettingsEnabled
self.isSupportRequestEnabled = isSupportRequestEnabled
self.jetpackSetupWithApplicationPassword = jetpackSetupWithApplicationPassword
self.betterCustomerSelectionInOrder = betterCustomerSelectionInOrder
self.productBundlesInOrderForm = productBundlesInOrderForm
self.isScanToUpdateInventoryEnabled = isScanToUpdateInventoryEnabled
self.sideBySideViewForOrderForm = sideBySideViewForOrderForm
self.isSubscriptionsInOrderCreationCustomersEnabled = isSubscriptionsInOrderCreationCustomersEnabled
self.isPointOfSaleEnabled = isPointOfSaleEnabled
self.googleAdsCampaignCreationOnWebView = googleAdsCampaignCreationOnWebView
self.blazeEvergreenCampaigns = blazeEvergreenCampaigns
self.blazeCampaignObjective = blazeCampaignObjective
self.revampedShippingLabelCreation = revampedShippingLabelCreation
self.viewEditCustomFieldsInProductsAndOrders = viewEditCustomFieldsInProductsAndOrders
self.favoriteProducts = favoriteProducts
self.isProductGlobalUniqueIdentifierSupported = isProductGlobalUniqueIdentifierSupported
self.hideSitesInStorePicker = hideSitesInStorePicker
self.backgroundProductImageUpload = backgroundProductImageUpload
}
func isFeatureFlagEnabled(_ featureFlag: FeatureFlag) -> Bool {
switch featureFlag {
case .inbox:
return isInboxOn
case .showInboxCTA:
return isShowInboxCTAEnabled
case .updateOrderOptimistically:
return isUpdateOrderOptimisticallyOn
case .shippingLabelsOnboardingM1:
return shippingLabelsOnboardingM1
case .domainSettings:
return isDomainSettingsEnabled
case .supportRequests:
return isSupportRequestEnabled
case .jetpackSetupWithApplicationPassword:
return jetpackSetupWithApplicationPassword
case .betterCustomerSelectionInOrder:
return betterCustomerSelectionInOrder
case .productBundlesInOrderForm:
return productBundlesInOrderForm
case .scanToUpdateInventory:
return isScanToUpdateInventoryEnabled
case .sideBySideViewForOrderForm:
return sideBySideViewForOrderForm
case .subscriptionsInOrderCreationCustomers:
return isSubscriptionsInOrderCreationCustomersEnabled
case .pointOfSale:
return isPointOfSaleEnabled
case .googleAdsCampaignCreationOnWebView:
return googleAdsCampaignCreationOnWebView
case .blazeEvergreenCampaigns:
return blazeEvergreenCampaigns
case .blazeCampaignObjective:
return blazeCampaignObjective
case .revampedShippingLabelCreation:
return revampedShippingLabelCreation
case .viewEditCustomFieldsInProductsAndOrders:
return viewEditCustomFieldsInProductsAndOrders
case .favoriteProducts:
return favoriteProducts
case .productGlobalUniqueIdentifierSupport:
return isProductGlobalUniqueIdentifierSupported
case .hideSitesInStorePicker:
return hideSitesInStorePicker
case .backgroundProductImageUpload:
return backgroundProductImageUpload
default:
return false
}
}
}