forked from microsoft/ALAppExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShpfyInitializeTest.Codeunit.al
386 lines (347 loc) · 16.1 KB
/
ShpfyInitializeTest.Codeunit.al
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
/// <summary>
/// Codeunit Shpfy Initialize Test (ID 139561).
/// </summary>
codeunit 139561 "Shpfy Initialize Test"
{
EventSubscriberInstance = Manual;
var
DummyCustomer: Record Customer;
DummyItem: Record Item;
TempShop: Record "Shpfy Shop" temporary;
Any: Codeunit Any;
LibraryAssert: Codeunit "Library Assert";
CommunicationMgt: Codeunit "Shpfy Communication Mgt.";
LibraryERM: Codeunit "Library - ERM";
LibraryRandom: Codeunit "Library - Random";
ShopifyAccessToken: Text;
DummyCustomerEmailLbl: Label '[email protected]';
DummyItemDescriptionLbl: Label 'Dummy Item Description';
trigger OnRun()
begin
CreateShop();
end;
internal procedure CreateShop(): Record "Shpfy Shop"
var
RefundGLAccount: Record "G/L Account";
Shop: Record "Shpfy Shop";
VATPostingSetup: Record "VAT Posting Setup";
ShpfyInitializeTest: Codeunit "Shpfy Initialize Test";
Code: Code[10];
CustomerTemplateCode: Code[20];
ItemTemplateCode: Code[20];
PostingGroupCode: Code[20];
GenPostingType: Enum "General Posting Type";
UrlTxt: Label 'https://%1.myshopify.com', Comment = '%1 = Shop name', Locked = true;
begin
BindSubscription(ShpfyInitializeTest);
if not TempShop.IsEmpty() then
if Shop.Get(TempShop.Code) then
exit(Shop);
Code := Any.AlphabeticText(MaxStrLen(Code));
LibraryERM.CreateVATPostingSetupWithAccounts(VATPostingSetup,
VATPostingSetup."VAT Calculation Type"::"Normal VAT", LibraryRandom.RandDecInDecimalRange(10, 25, 0));
RefundGLAccount.Get(LibraryERM.CreateGLAccountWithVATPostingSetup(VATPostingSetup, GenPostingType::Sale));
RefundGLAccount."Direct Posting" := true;
RefundGLAccount.Modify();
Shop.Init();
Shop.Code := Code;
Shop."Shopify URL" := StrSubstNo(UrlTxt, Any.AlphabeticText(20));
Shop.Enabled := true;
PostingGroupCode := Any.AlphabeticText(10);
CustomerTemplateCode := CreateCustomerTemplate(PostingGroupCode);
ItemTemplateCode := CreateItemTemplate(PostingGroupCode);
Shop."Customer Templ. Code" := CreateCustomerTemplate(PostingGroupCode);
Shop."Item Templ. Code" := CreateItemTemplate(PostingGroupCode);
CreateVATPostingSetup(PostingGroupCode, PostingGroupCode);
CreateVATPostingSetup(PostingGroupCode, '');
CreateVATPostingSetup(PostingGroupCode, RefundGLAccount."VAT Prod. Posting Group");
Shop."Shipping Charges Account" := CreateShippingChargesGLAcc(VATPostingSetup, GenPostingType);
Shop."Customer Posting Group" := PostingGroupCode;
Shop."Gen. Bus. Posting Group" := PostingGroupCode;
Shop."VAT Bus. Posting Group" := PostingGroupCode;
CreateCountryRegionCode(CustomerTemplateCode);
Shop."VAT Country/Region Code" := CustomerTemplateCode;
Shop."Refund Account" := RefundGLAccount."No.";
if Shop.Insert() then;
Commit();
CommunicationMgt.SetShop(Shop);
CommunicationMgt.SetTestInProgress(true);
CreateDummyCustomer(CustomerTemplateCode);
CreateDummyItem(ItemTemplateCode);
if not TempShop.Get(Code) then begin
TempShop := Shop;
TempShop.Insert();
Commit();
end;
UnbindSubscription(ShpfyInitializeTest);
exit(Shop);
end;
local procedure CreateDummyCustomer(CurrentTemplateCode: Code[20])
var
Contact: Record Contact;
ContactBusinessRelation: Record "Contact Business Relation";
begin
CreateDummyCustomerFromCustomerTempl(CurrentTemplateCode);
DummyCustomer.Name := 'Dummy Customer Name';
DummyCustomer."E-Mail" := DummyCustomerEmailLbl;
DummyCustomer.Modify();
DummyCustomer.SetRecFilter();
ContactBusinessRelation.SetRange("Link to Table", ContactBusinessRelation."Link to Table"::Customer);
ContactBusinessRelation.SetRange("No.", DummyCustomer."No.");
if ContactBusinessRelation.FindFirst() then
if Contact.Get(ContactBusinessRelation."Contact No.") then begin
Contact."E-Mail" := DummyCustomer."E-Mail";
Contact.Modify();
end;
end;
local procedure CreateDummyCustomerFromCustomerTempl(CustomerTemplCode: Code[20])
var
CustomerTempl: Record "Customer Templ.";
CustomerTemplMgt: Codeunit "Customer Templ. Mgt.";
IsHandled: Boolean;
begin
if CustomerTemplCode = '' then
exit;
if not CustomerTempl.Get(CustomerTemplCode) then
exit;
CustomerTemplMgt.CreateCustomerFromTemplate(DummyCustomer, IsHandled, CustomerTemplCode);
end;
local procedure CreateDummyItem(CurrentTemplateCode: Code[20])
begin
CreateDummyItemFromTempl(CurrentTemplateCode);
DummyItem.Description := 'Dummy Item Description';
DummyItem.Modify();
DummyItem.SetRecFilter();
end;
local procedure CreateDummyItemFromTempl(ItemTemplCode: Code[20])
var
ItemTempl: Record "Item Templ.";
ItemTemplMgt: Codeunit "Item Templ. Mgt.";
IsHandled: Boolean;
begin
if ItemTemplCode = '' then
exit;
if not ItemTempl.Get(ItemTemplCode) then
exit;
ItemTemplMgt.CreateItemFromTemplate(DummyItem, IsHandled, ItemTemplCode);
end;
internal procedure GetDummyCustomer() Customer: Record Customer;
begin
Customer.SetRange("E-Mail", DummyCustomerEmailLbl);
Customer.FindFirst();
end;
internal procedure GetDummyItem() Item: Record Item;
begin
Item.SetRange(Description, DummyItemDescriptionLbl);
Item.FindFirst();
end;
local procedure CreateItemTemplate(PostingGroupCode: Code[20]) Code: Code[20]
var
VATPostingSetup: Record "VAT Posting Setup";
GeneralPostingSetup: Record "General Posting Setup";
InventoryPostingGroup: Record "Inventory Posting Group";
GenProductPostingGroup: Record "Gen. Product Posting Group";
VatProductPostingGroup: Record "VAT Product Posting Group";
NoSeries: Record "No. Series";
begin
Code := Any.AlphabeticText(10);
InventoryPostingGroup := CreateInventoryPostingGroup(PostingGroupCode);
GenProductPostingGroup := CreateGenProdPostingGroup(PostingGroupCode);
VatProductPostingGroup := CreateVatProdPostingGroup(PostingGroupCode);
NoSeries := CreateNoSeries('SHPFY');
CreateItemTempl(Code, InventoryPostingGroup.Code, GenProductPostingGroup.Code, VatProductPostingGroup.Code, NoSeries.Code);
Clear(VatPostingSetup);
VatPostingSetup."VAT Bus. Posting Group" := PostingGroupCode;
VatPostingSetup."VAT Prod. Posting Group" := PostingGroupCode;
VatPostingSetup."VAT Calculation Type" := "Tax Calculation Type"::"Normal VAT";
if not VatPostingSetup.Insert() then
VatPostingSetup.Modify();
Clear(GeneralPostingSetup);
GeneralPostingSetup."Gen. Bus. Posting Group" := PostingGroupCode;
GeneralPostingSetup."Gen. Prod. Posting Group" := PostingGroupCode;
if not GeneralPostingSetup.Insert() then
GeneralPostingSetup.Modify();
end;
local procedure CreateItemTempl(ItemTemplCode: Code[20]; InventoryPostingGroupCode: Code[20]; GenProductPostingGroupCode: Code[20]; VatProductPostingGroupCode: Code[20]; NoSeriesCode: Code[20]): Code[20]
var
ItemTempl: Record "Item Templ.";
begin
ItemTempl.Code := ItemTemplCode;
ItemTempl."Inventory Posting Group" := InventoryPostingGroupCode;
ItemTempl."Gen. Prod. Posting Group" := GenProductPostingGroupCode;
ItemTempl."VAT Prod. Posting Group" := VatProductPostingGroupCode;
ItemTempl."No. Series" := NoSeriesCode;
if not ItemTempl.Insert() then
ItemTempl.Modify();
end;
local procedure CreateInventoryPostingGroup(Code: Code[20]) InvPostingGroup: Record "Inventory Posting Group"
begin
InvPostingGroup.SetRange(Code);
if not InvPostingGroup.Get(Code) then begin
Clear(InvPostingGroup);
InvPostingGroup.Code := Code;
InvPostingGroup.Insert();
end;
end;
local procedure CreateGenProdPostingGroup(Code: Code[20]) GenProdPostingGroup: Record "Gen. Product Posting Group";
begin
GenProdPostingGroup.SetRange(Code);
if not GenProdPostingGroup.Get(Code) then begin
Clear(GenProdPostingGroup);
GenProdPostingGroup.Code := Code;
GenProdPostingGroup."Def. VAT Prod. Posting Group" := CreateVatProdPostingGroup(Code).Code;
GenProdPostingGroup.Insert();
end;
end;
local procedure CreateVatProdPostingGroup(Code: Code[20]) VatProdPostingGroup: Record "VAT Product Posting Group"
begin
VatProdPostingGroup.SetRange(Code);
if not VatProdPostingGroup.Get(Code) then begin
Clear(VatProdPostingGroup);
VatProdPostingGroup.Code := Code;
VatProdPostingGroup.Insert();
end;
end;
local procedure CreateCountryRegionCode(Code: code[20]) CountryRegion: Record "Country/Region"
begin
CountryRegion.Reset();
if not CountryRegion.Get(code) then begin
Clear(CountryRegion);
CountryRegion.Code := CopyStr(Code, 1, MaxStrLen(CountryRegion.Code));
CountryRegion.Insert();
end;
end;
local procedure CreateNoSeries(Code: Code[20]) NoSeries: Record "No. Series"
var
NoSeriesLine: Record "No. Series Line";
begin
if not NoSeries.Get(Code) then begin
NoSeries.Code := Code;
NoSeries."Default Nos." := true;
NoSeries.Insert();
NoSeriesLine."Series Code" := Code;
NoSeriesLine."Starting No." := '90000';
NoSeriesLine."Increment-by No." := 1;
NoSeriesLine."Ending No." := '100000';
NoSeriesLine.Open := true;
NoSeriesLine.Insert();
end;
end;
local procedure CreateCustomerTemplate(PostingGroupCode: Code[20]) Code: Code[20]
var
CustomerPostingGroup: Record "Customer Posting Group";
GenBusinessPostingGroup: Record "Gen. Business Posting Group";
VatBusinessPostingGroup: Record "VAT Business Posting Group";
GeneralPostingSetup: Record "General Posting Setup";
VatPostingSetup: Record "VAT Posting Setup";
begin
Code := Any.AlphabeticText(10);
CustomerPostingGroup := CreateCustomerPostingGroup(PostingGroupCode);
GenBusinessPostingGroup := CreateGenBusPostingGroup(PostingGroupCode);
VatBusinessPostingGroup := CreateVatBusPostingGroup(PostingGroupCode);
CreateCustomerTempl(Code, CustomerPostingGroup.Code, GenBusinessPostingGroup.Code, VatBusinessPostingGroup.Code);
Clear(VatPostingSetup);
VatPostingSetup."VAT Bus. Posting Group" := PostingGroupCode;
VatPostingSetup."VAT Prod. Posting Group" := PostingGroupCode;
VatPostingSetup."VAT Calculation Type" := "Tax Calculation Type"::"Normal VAT";
if not VatPostingSetup.Insert() then
VatPostingSetup.Modify();
Clear(GeneralPostingSetup);
GeneralPostingSetup."Gen. Bus. Posting Group" := PostingGroupCode;
GeneralPostingSetup."Gen. Prod. Posting Group" := PostingGroupCode;
if not GeneralPostingSetup.Insert() then
GeneralPostingSetup.Modify();
end;
local procedure CreateCustomerTempl(CustomerTemplCode: Code[20]; CustomerPostingGroupCode: Code[20]; GenBusinessPostingGroupCode: Code[20]; VATBusinessPostingGroupCode: Code[20])
var
CustomerTempl: Record "Customer Templ.";
begin
CustomerTempl.Code := CustomerTemplCode;
CustomerTempl."Customer Posting Group" := CustomerPostingGroupCode;
CustomerTempl."Gen. Bus. Posting Group" := GenBusinessPostingGroupCode;
CustomerTempl."VAT Bus. Posting Group" := VATBusinessPostingGroupCode;
if not CustomerTempl.Insert() then
CustomerTempl.Modify();
end;
local procedure CreateCustomerPostingGroup(Code: Code[20]) CustPostingGroup: Record "Customer Posting Group"
begin
CustPostingGroup.SetRange(Code);
if not CustPostingGroup.Get(Code) then begin
Clear(CustPostingGroup);
CustPostingGroup.Code := Code;
CustPostingGroup.Insert();
end;
end;
local procedure CreateGenBusPostingGroup(Code: Code[20]) GenBusPostingGroup: Record "Gen. Business Posting Group";
begin
GenBusPostingGroup.SetRange(Code);
if not GenBusPostingGroup.Get(Code) then begin
Clear(GenBusPostingGroup);
GenBusPostingGroup.Code := Code;
GenBusPostingGroup."Def. VAT Bus. Posting Group" := CreateVatBusPostingGroup(Code).Code;
GenBusPostingGroup.Insert();
end;
end;
local procedure CreateVatBusPostingGroup(Code: Code[20]) VatBusPostingGroup: Record "VAT Business Posting Group"
begin
VatBusPostingGroup.SetRange(Code);
if not VatBusPostingGroup.Get(Code) then begin
Clear(VatBusPostingGroup);
VatBusPostingGroup.Code := Code;
VatBusPostingGroup.Insert();
end;
end;
[EventSubscriber(ObjectType::Codeunit, Codeunit::"Shpfy Communication Events", 'OnGetAccessToken', '', true, false)]
local procedure OnGetAccessToken(var AccessToken: Text)
begin
if ShopifyAccessToken = '' then
ShopifyAccessToken := Any.AlphanumericText(50);
AccessToken := ShopifyAccessToken;
end;
[EventSubscriber(ObjectType::Codeunit, Codeunit::"Shpfy Communication Events", 'OnClientSend', '', true, false)]
local procedure OnClientSend(HttpRequestMessage: HttpRequestMessage; var HttpResponseMessage: HttpResponseMessage)
begin
TestRequestHeaderContainsAccessToken(HttpRequestMessage);
end;
local procedure TestRequestHeaderContainsAccessToken(HttpRequestMessage: HttpRequestMessage)
var
Headers: HttpHeaders;
ShopifyAccessTokenTxt: Label 'X-Shopify-Access-Token', Locked = true;
Values: Array[1] of Text;
begin
HttpRequestMessage.GetHeaders(Headers);
LibraryAssert.IsTrue(Headers.Contains(ShopifyAccessTokenTxt), 'access token doesn''t exist');
Headers.GetValues(ShopifyAccessTokenTxt, Values);
LibraryAssert.IsTrue(Values[1] = ShopifyAccessToken, 'invalid access token');
end;
local procedure CreateVATPostingSetup(BusinessPostingGroup: Code[20]; ProductPostingGroup: Code[20])
var
GeneralPostingSetup: Record "General Posting Setup";
VatPostingSetup: Record "VAT Posting Setup";
begin
if not VatPostingSetup.Get(BusinessPostingGroup, ProductPostingGroup) then begin
Clear(VatPostingSetup);
VatPostingSetup."VAT Bus. Posting Group" := BusinessPostingGroup;
VatPostingSetup."VAT Prod. Posting Group" := ProductPostingGroup;
VatPostingSetup."VAT Identifier" := Any.AlphabeticText(MaxStrLen(VatPostingSetup."VAT Identifier"));
VatPostingSetup."VAT Calculation Type" := "Tax Calculation Type"::"Normal VAT";
VatPostingSetup."VAT %" := 10;
VatPostingSetup.Insert();
end;
if not GeneralPostingSetup.Get(BusinessPostingGroup, ProductPostingGroup) then begin
Clear(GeneralPostingSetup);
GeneralPostingSetup."Gen. Bus. Posting Group" := BusinessPostingGroup;
GeneralPostingSetup."Gen. Prod. Posting Group" := ProductPostingGroup;
GeneralPostingSetup.Insert();
end;
end;
local procedure CreateShippingChargesGLAcc(var VATPostingSetup: Record "VAT Posting Setup"; GenPostingType: Enum "General Posting Type"): Code[20]
var
ShippingChargesGLAccount: Record "G/L Account";
begin
ShippingChargesGLAccount.Get(LibraryERM.CreateGLAccountWithVATPostingSetup(VATPostingSetup, GenPostingType::Sale));
ShippingChargesGLAccount."Direct Posting" := true;
ShippingChargesGLAccount.Modify(false);
exit(ShippingChargesGLAccount."No.");
end;
}