From 2e8cef4bddba9213495fa8f9fcd4938311ac606f Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Thu, 27 Mar 2014 00:12:58 +0200 Subject: Adding RepairOrReplace support --- tests/test_gsxws.py | 48 +++++++++++++++++++++++++++++++++++++----------- 1 file changed, 37 insertions(+), 11 deletions(-) (limited to 'tests') diff --git a/tests/test_gsxws.py b/tests/test_gsxws.py index b400639..5012a1b 100644 --- a/tests/test_gsxws.py +++ b/tests/test_gsxws.py @@ -20,6 +20,21 @@ class RemoteTestCase(TestCase): env['GSX_ENV']) +class RepairTestCase(RemoteTestCase): + def setUp(self): + super(RepairTestCase, self).setUp() + customer = repairs.Customer(emailAddress='test@example.com') + customer.firstName = 'First Name' + customer.lastName = 'Last Name' + customer.addressLine1 = 'Address Line 1' + customer.primaryPhone = '0123456789' + customer.city = 'Test' + customer.zipCode = '12345' + customer.state = 'VIC' + customer.country = 'AU' + self.customer = customer + + class TestCoreFunctions(TestCase): def test_dump(self): rep = repairs.Repair(blaa=u'ääöö') @@ -121,7 +136,27 @@ class TestEscalationFunctions(RemoteTestCase): self.assertEqual(result.escalationType, 'GSX Help') -class TestRepairFunctions(RemoteTestCase): +class TestRepairFunctions(RepairTestCase): + def test_repair_or_replace(self): + rep = repairs.RepairOrReplace() + rep.serialNumber = env['GSX_SN'] + rep.unitReceivedDate = '03/20/2014' + rep.unitReceivedTime = '11:00 am' + rep.shipTo = env['GSX_SHIPTO'] + rep.purchaseOrderNumber = '123456' + rep.coverageOptions = 'A1' + rep.symptom = 'test' + rep.diagnosis = 'test' + rep.shipper = 'XUPSN' + rep.trackingNumber = '123456' + rep.customerAddress = self.customer + part = repairs.RepairOrderLine() + part.partNumber = 'X661-5256' + part.comptiaCode = 'X01' + part.comptiaModifier = 'A' + rep.orderLines = [part] + rep.create() + @skip("Skip") def test_whole_unit_exchange(self): rep = repairs.WholeUnitExchange() @@ -132,16 +167,7 @@ class TestRepairFunctions(RemoteTestCase): rep.poNumber = '' rep.symptom = 'test' rep.diagnosis = 'test' - customer = repairs.Customer(emailAddress='test@example.com') - customer.firstName = 'First Name' - customer.lastName = 'Last Name' - customer.addressLine1 = 'Address Line 1' - customer.primaryPhone = '0123456789' - customer.city = 'Test' - customer.zipCode = '12345' - customer.state = 'Test' - customer.country = 'US' - rep.customerAddress = customer + rep.customerAddress = self.customer part = repairs.RepairOrderLine() part.partNumber = '661-5571' rep.orderLines = [part] -- cgit v1.2.3