-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo_test.rb
66 lines (52 loc) · 2.22 KB
/
demo_test.rb
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
require 'minitest/autorun'
require_relative './PhysicalProductTaxHandler'
require_relative './DigitalServicesTaxHandler'
require_relative './OnSiteServicesTaxHandler'
# Here we run the unit tests for all scenarios
class PhysicalProductTaxHandlerTest < Minitest::Test
def test_business_physicalgoods_othereu
obj_physical_good = PhysicalProductTaxHandler.new('OTHER_EU', 'BUSINESS')
taxData = obj_physical_good.compute_tax
assert_equal(taxData[:tax_rate], 'NO_VAT')
assert_equal(taxData[:transaction_type], 'reverse charge')
end
def test_individual_physicalgoods_othereu
obj_physical_good = PhysicalProductTaxHandler.new('OTHER_EU', 'INDIVIDUAL')
taxData = obj_physical_good.compute_tax
assert_equal(taxData[:tax_rate], 'OTHER_EU_VAT')
assert_equal(taxData[:transaction_type], 'good')
end
def test_physicalgoods_outsideeu
obj_physical_good = PhysicalProductTaxHandler.new('OUTSIDE_EU', 'INDIVIDUAL')
taxData = obj_physical_good.compute_tax
assert_equal(taxData[:tax_rate], 'NO_VAT')
assert_equal(taxData[:transaction_type], 'export')
end
end
class DigitalServicesTaxHandlerTest < Minitest::Test
def test_business_digitalservices_othereu
obj_digitalservices = DigitalServicesTaxHandler.new('OTHER_EU', 'BUSINESS')
taxData = obj_digitalservices.compute_tax
assert_equal(taxData[:tax_rate], 'NO_VAT')
assert_equal(taxData[:transaction_type], 'reverse charge')
end
def test_individual_digitalservices_othereu
obj_digitalservices = DigitalServicesTaxHandler.new('OTHER_EU', 'INDIVIDUAL')
taxData = obj_digitalservices.compute_tax
assert_equal(taxData[:tax_rate], 'OTHER_EU_VAT')
assert_equal(taxData[:transaction_type], 'service and digital')
end
def test_digitalservices_outsideeu
obj_digitalservices = DigitalServicesTaxHandler.new('OUTSIDE_EU', 'INDIVIDUAL')
taxData = obj_digitalservices.compute_tax
assert_equal(taxData[:tax_rate], 'NO_VAT')
end
end
class OnSiteServicesTaxHandlerTest < Minitest::Test
def test_onsiteservices
obj_onsiteservices = OnSiteServicesTaxHandler.new
taxData = obj_onsiteservices.compute_tax
assert_equal(taxData[:tax_rate], 'ES_VAT')
assert_equal(taxData[:transaction_type], 'service and onsite')
end
end