@isTest
|
private class NFM401WebServiceTest {
|
static testMethod void testMethod1() {
|
List<RecordType> rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院'];
|
if (rectCo.size() == 0) {
|
throw new ControllerUtil.myException('not found 病院 recodetype');
|
}
|
List<RecordType> rectSct = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '戦略科室分類 消化科'];
|
if (rectSct.size() == 0) {
|
throw new ControllerUtil.myException('not found 戦略科室分類 呼吸科 recodetype');
|
}
|
List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '診療科 消化科'];
|
if (rectDpt.size() == 0) {
|
throw new ControllerUtil.myException('not found 診療科 消化科 recodetype');
|
}
|
// テストデータ
|
Account company = new Account();
|
company.RecordTypeId = rectCo[0].Id;
|
company.Name = 'NFM105TestCompany';
|
upsert company;
|
Account section = [Select Management_Code__c, Management_Code_Auto__c, Name, Id from Account where ParentId = :company.Id and RecordTypeId = :rectSct[0].Id];
|
|
Account depart = new Account();
|
depart.RecordTypeId = rectDpt[0].Id;
|
depart.Name = '*';
|
depart.Department_Name__c = 'NFM105TestDepart';
|
depart.ParentId = section.Id;
|
depart.Department_Class__c = section.Id;
|
depart.Hospital__c = company.Id;
|
upsert depart;
|
|
List<Product2> prdList = new List<Product2>();
|
Product2 prd1 = new Product2();
|
prd1.ProductCode_Ext__c = 'NFM105Prd1';
|
prd1.ProductCode = 'NFM105Prd1';
|
prd1.Repair_Product_Code__c = 'NFM105Prd1_RP';
|
prd1.Name = 'NFM105Prd1';
|
prd1.Manual_Entry__c = false;
|
prdList.add(prd1);
|
insert prdList;
|
|
Asset ast = new Asset();
|
ast.Name = 'NFM105Ast1';
|
ast.AccountId = depart.Id;
|
ast.Department_Class__c = section.Id;
|
ast.Hospital__c = company.Id;
|
ast.Product2Id = prd1.Id;
|
ast.SerialNumber = 'NFM105SerialNumber';
|
ast.Guarantee_period_for_products__c = Date.today();
|
ast.InstallDate = Date.today();
|
insert ast;
|
ast = [select Id, Name, Product_Serial_No__c, AccountId, Department_Class__c, Department_Class__r.Management_Code_Auto__c, Hospital__c, Product2Id, Product2.ProductCode, Product2.Repair_Product_Code__c, SerialNumber
|
from Asset
|
where Id = :ast.Id];
|
|
Repair__c rpr = new Repair__c();
|
rpr.PAE_Determine__c = 'PAE' ; //--
|
rpr.ifDeadHurt__c = '有'; //-- R1
|
rpr.PAE_DetermineAC__c = null; //--
|
rpr.SAPRepairNo__c = 'NFM105Rpr1';
|
rpr.Account__c = depart.Id;
|
rpr.Department_Class__c = section.Id;
|
rpr.Hospital__c = company.Id;
|
rpr.Delivered_Product__c = ast.Id;
|
rpr.Status__c = '1.受理完毕';
|
rpr.Incharge_Staff__c = Userinfo.getUserId();
|
rpr.Repair_Detail__c = 'test';
|
rpr.GeneratedPDFField__c = null;
|
rpr.AsyncData__c = true;
|
rpr.Complaint_Number__c = null;
|
rpr.ReportAdverseEvents__c = '有';
|
rpr.ProblemOccurred__c = '到货验收';
|
rpr.ifDeadHurt__c = '有';
|
rpr.ASReportedCode__c = 'TEST01,TEST02';
|
rpr.ASReportedCodeAC__c = 'TEST02,TEST04';
|
rpr.DateReceiptQuestions__c = Date.today();
|
rpr.Failure_Occurrence_Date__c = Date.today();
|
rpr.Repair_Ordered_Date__c = Date.today();
|
System.runAs(new User(Id = Userinfo.getUserId())){
|
insert rpr;
|
}
|
|
List<String> ids = new List<String>();
|
ids.add(rpr.Id);
|
if (Test.isRunningTest()) {
|
NFM401WebService.sendToETQ(null,null,ids,null);
|
}else {
|
NFM401WebService.sendToETQ(null,null,ids,null);
|
|
}
|
}
|
|
|
static testMethod void testMethod2() {
|
QIS_Report__c qis = new QIS_Report__c();
|
qis.Damage_For_Doc_Or_Pat__c = '有'; //--
|
qis.PAE_Determine__c = 'PAE'; //-- Q1
|
qis.PAE_DetermineAC__c = null; //--
|
qis.Relation_With_The_Problem__c = '有可能';
|
qis.Report_For_Goz__c = '不知道';
|
qis.Damage_For_Doc_Or_Pat__c = '无';
|
qis.PAE_DetermineResultsText__c = 'PAE';
|
qis.OCSM_Nogoods__c = false;
|
qis.OCM_RC_RecievedDate__c = Date.today();
|
qis.ASReportedCode__c = 'G100,G200';
|
qis.ASReportedCodeAC__c = 'TEST1,TEST2';
|
qis.next_action__c = '无偿更换';
|
insert qis;
|
|
List<String> ids = new List<String>();
|
ids.add(qis.Id);
|
|
|
Test.startTest();
|
NFM401WebService.sendToETQ(null,null,ids,null);
|
Test.stopTest();
|
}
|
}
|