@isTest
|
private class InventoryReportDetailArchiveBatchTest {
|
|
// AWSServiceTool2没上线就把这部分注释 start 20220408
|
@TestSetup
|
static void setup(){
|
TestDataUtility.CreatePIPolicyConfigurations(new string[]{'Agency_Contact__c','Contact'});
|
}
|
|
@isTest
|
static void Test1(){
|
Test.setMock(HttpCalloutMock.class, new HttpMock());
|
|
List<Agency_Contact__c> lra = new List<Agency_Contact__c>();
|
lra.add(new Agency_Contact__c(
|
));
|
insert lra;
|
Test.startTest();
|
//system.debug(PIHelper.getPIIntegrationInfo('Agency_Contact__c').newEncryptUrl);
|
AWSServiceTool2.EncryptPushCore(Json.serialize(lra),'Agency_Contact__c');
|
AWSServiceTool2.EncryptPushFuture(null,null);
|
Test.stopTest();
|
}
|
|
@isTest
|
static void Test2(){
|
Test.setMock(HttpCalloutMock.class, new HttpMock());
|
|
List<Agency_Contact__c> lra = new List<Agency_Contact__c>();
|
lra.add(new Agency_Contact__c(
|
Aws_Data_Id__c = '123456'
|
));
|
insert lra;
|
Test.startTest();
|
//system.debug(PIHelper.getPIIntegrationInfo('Agency_Contact__c').newEncryptUrl);
|
AWSServiceTool2.EncryptPushCore(Json.serialize(lra),'Agency_Contact__c');
|
Test.stopTest();
|
}
|
|
@isTest
|
static void Test3(){
|
Test.setMock(HttpCalloutMock.class, new HttpMock());
|
|
|
Test.startTest();
|
AWSServiceTool2.EncryptPushData(new string[]{'0031000000O4Cff'});
|
|
Test.stopTest();
|
}
|
|
//@isTest
|
// static void Test2(){
|
// Test.setMock(HttpCalloutMock.class, new HttpMock());
|
|
// List<Agency_Contact__c> lra = new List<Agency_Contact__c>();
|
// lra.add(new Agency_Contact__c(
|
// Id = 'a2R1m0000007BPD',
|
// Aws_Data_Id__c = '123456'
|
// ));
|
// Test.startTest();
|
// //system.debug(PIHelper.getPIIntegrationInfo('Agency_Contact__c').newEncryptUrl);
|
// AWSServiceTool2.EncryptPushCore(Json.serialize(lra),'Agency_Contact__c');
|
// Test.stopTest();
|
// }
|
|
class HttpMock implements HttpCalloutMock{
|
public HTTPResponse respond(HTTPRequest request) {
|
// 创建一个假的回应
|
System.debug('------------------------------------------------------');
|
HttpResponse response = new HttpResponse();
|
string body = '';
|
system.debug(request.getEndpoint());
|
if(request.getEndpoint().contains('token')){
|
system.debug('url=token');
|
response.setHeader('Content-Type', 'application/json');
|
body='{ "message": "", "object": "freqfewqfewewfewfew", "status": "", "success": true, "timestamp": 0, "txId": "" }';
|
} else if(request.getEndpoint().contains('insert')){
|
system.debug('url=Insert');
|
response.setHeader('Content-Type', 'application/json');
|
body='{ "message": "", "object": [ { "dataId": "123456", "directShippmentAddress": "", "directShippmentAddressEncrypt": "", "isDelete": 0, "phoneNumber": "", "phoneNumberEncrypt": "", "sfRecordId": "a2R1m0000007BPD" } ], "status": "", "success": true, "timestamp": 0, "txId": "" }';
|
} else if(request.getEndpoint().contains('update')){
|
system.debug('url=update');
|
response.setHeader('Content-Type', 'application/json');
|
body='{ "message": "", "object": [ { "dataId": "123456", "directShippmentAddress": "", "directShippmentAddressEncrypt": "", "isDelete": 0, "phoneNumber": "", "phoneNumberEncrypt": "", "sfRecordId": "a2R1m0000007BPD" } ], "status": "", "success": true, "timestamp": 0, "txId": "" }';
|
} else{
|
|
}
|
|
response.setBody(body);
|
response.setStatus('OK');
|
response.setStatusCode(200);
|
return response;
|
// }
|
}
|
}
|
// AWSServiceTool2没上线就把这部分注释 end
|
// 202220531 ljh end
|
|
// 创建Asset数据
|
static void setupTestData() {
|
SS_Batch_Column_Mapping__c InventoryHeaderName = new SS_Batch_Column_Mapping__c(Name = 'Inventory_Header_Name', SS_TableName__c='Inventory_Header_Name');
|
InventoryHeaderName.From_Column_001__c = '北京 备品中心';
|
InventoryHeaderName.SS_Column_001__c = 'BJ';
|
InventoryHeaderName.From_Column_002__c = '上海 备品中心';
|
InventoryHeaderName.SS_Column_002__c = 'SH';
|
InventoryHeaderName.From_Column_003__c = '广州 备品中心';
|
InventoryHeaderName.SS_Column_003__c = 'GZ';
|
insert new SS_Batch_Column_Mapping__c[] {InventoryHeaderName};
|
// 病院を作る
|
Account hospital = new Account();
|
hospital.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP'].id;
|
hospital.Name = 'test hospital';
|
hospital.Is_Active__c = '有効';
|
hospital.Attribute_Type__c = '卫生部';
|
hospital.Speciality_Type__c = '综合医院';
|
hospital.Grade__c = '一级';
|
hospital.OCM_Category__c = 'SLTV';
|
hospital.Is_Medical__c = '医疗机构';
|
hospital.Town__c = '东京';
|
insert hospital;
|
|
// 戦略科室を得る
|
Account[] strategicDep = [SELECT ID, Name FROM Account WHERE parentId = :hospital.Id AND recordType.DeveloperName = 'Department_Class_OTH'];
|
// 診療科を作る
|
Account dep = new Account();
|
dep.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_OTH'].id;
|
dep.Name = 'test dep';
|
dep.AgentCode_Ext__c = '9999998';
|
dep.ParentId = strategicDep[0].Id;
|
dep.Department_Class__c = strategicDep[0].Id;
|
dep.Hospital__c = hospital.Id;
|
insert dep;
|
|
Contact contact2 = new Contact();
|
contact2.AccountId = dep.Id;
|
contact2.FirstName = '責任者';
|
contact2.LastName = 'test1经销商';
|
insert contact2;
|
|
// 产品
|
Product2 pro1 = new Product2(Name='name01',IsActive=true,Family='GI',
|
Fixture_Model_No__c='n01',Serial_Lot_No__c='S/N tracing',
|
Fixture_Model_No_T__c = 'n01',
|
ProductCode_Ext__c='pc01',Manual_Entry__c=false);
|
Product2 pro2 = new Product2(Name='name02',IsActive=true,Family='GI',
|
Fixture_Model_No__c='n02',Serial_Lot_No__c='Lot tracing',
|
ProductCode_Ext__c='pc02',Manual_Entry__c=false);
|
Product2 pro3 = new Product2(Name='name03',IsActive=true,Family='GI',
|
Fixture_Model_No__c='n03',Serial_Lot_No__c='Lot tracing',
|
ProductCode_Ext__c='pc03',Manual_Entry__c=false);
|
insert new Product2[] {pro1, pro2, pro3};
|
|
//---------------------------主体 两个附属品(个体管理 数量管理)
|
// 保有设备A (主体)
|
Asset assetA1 = new Asset(Asset_Owner__c = 'Olympus');
|
assetA1.RecordTypeId = System.Label.Asset_RecordType;
|
assetA1.SerialNumber = 'ass01';
|
assetA1.Name = 'ass01';
|
assetA1.AccountId = dep.Id;
|
assetA1.Department_Class__c = strategicDep[0].Id;
|
assetA1.Hospital__c = hospital.Id;
|
assetA1.Product2Id = pro1.Id;
|
assetA1.Quantity = 1;
|
assetA1.Status = '有库存';
|
assetA1.Manage_type__c = '个体管理';
|
assetA1.Loaner_accsessary__c = false;
|
assetA1.Product_category__c = 'GI';
|
assetA1.Delete_Flag__c = false;
|
assetA1.Freeze_sign__c = false;
|
assetA1.Out_of_wh__c = 0;
|
assetA1.Salesdepartment__c = '1.华北营业本部';
|
assetA1.Internal_asset_location__c = '北京 备品中心';
|
assetA1.Product_category__c = 'GI';
|
assetA1.Equipment_Type__c = '产品试用';
|
assetA1.SalesProvince__c = '北京';
|
assetA1.WH_location__c = '货架号1';
|
assetA1.AssetManageConfirm__c = true;
|
// 保有设备A (附属品 数量管理)
|
Asset assetA2 = new Asset(Asset_Owner__c = 'Olympus');
|
assetA2.RecordTypeId = System.Label.Asset_RecordType;
|
assetA2.SerialNumber = 'ass02';
|
assetA2.Name = 'ass02';
|
assetA2.AccountId = dep.Id;
|
assetA2.Department_Class__c = strategicDep[0].Id;
|
assetA2.Hospital__c = hospital.Id;
|
assetA2.Product2Id = pro2.Id;
|
assetA2.Quantity = 10;
|
assetA2.Status = '有库存';
|
assetA2.Manage_type__c = '数量管理';
|
assetA2.Loaner_accsessary__c = true;
|
assetA2.Product_category__c = 'GI';
|
assetA2.Delete_Flag__c = false;
|
assetA2.Freeze_sign__c = false;
|
assetA2.Out_of_wh__c = 3;
|
assetA2.Frozen_Quantity__c = 2;
|
assetA2.Salesdepartment__c = '1.华北营业本部';
|
assetA2.Internal_asset_location__c = '北京 备品中心';
|
assetA2.Product_category__c = 'GI';
|
assetA2.Equipment_Type__c = '产品试用';
|
assetA2.SalesProvince__c = '北京';
|
assetA2.WH_location__c = '货架号2';
|
assetA2.AssetManageConfirm__c = true;
|
// 保有设备A (附属品 个体管理)
|
Asset assetA3 = new Asset(Asset_Owner__c = 'Olympus');
|
assetA3.RecordTypeId = System.Label.Asset_RecordType;
|
assetA3.SerialNumber = 'ass03';
|
assetA3.Name = 'ass03';
|
assetA3.AccountId = dep.Id;
|
assetA3.Department_Class__c = strategicDep[0].Id;
|
assetA3.Hospital__c = hospital.Id;
|
assetA3.Product2Id = pro3.Id;
|
assetA3.Quantity = 10;
|
assetA3.Status = '有库存';
|
assetA3.Manage_type__c = '数量管理';
|
assetA3.Loaner_accsessary__c = true;
|
assetA3.Product_category__c = 'GI';
|
assetA3.Delete_Flag__c = false;
|
assetA3.Freeze_sign__c = false;
|
assetA3.Out_of_wh__c = 3;
|
assetA3.Salesdepartment__c = '1.华北营业本部';
|
assetA3.Internal_asset_location__c = '北京 备品中心';
|
assetA3.Product_category__c = 'GI';
|
assetA3.Equipment_Type__c = '产品试用';
|
assetA3.SalesProvince__c = '北京';
|
assetA3.WH_location__c = '货架号3';
|
assetA3.Abandoned_Inventory__c = 1;
|
assetA3.AssetManageConfirm__c = true;
|
insert new Asset[] {assetA1, assetA2, assetA3};
|
|
Repair__c repair = new Repair__c();
|
repair.Service_Repair_No__c = 'repair';
|
repair.Status__c = '草案中';
|
repair.Hospital__c = hospital.Id;
|
repair.Account__c = dep.Id;
|
repair.Department_Class__c = strategicDep[0].id;
|
repair.Delivered_Product__c = assetA2.Id;
|
insert repair;
|
|
String cunFangDi = '北京 备品中心';
|
Inventory_Header__c header = new Inventory_Header__c();
|
header.Inventory_Start_Date__c = Date.toDay();
|
header.UniqueKey__c = 'IH-0000';
|
header.Inventory_Status__c = '盘点中';
|
header.Internal_asset_location__c = cunFangDi;
|
insert header;
|
|
Inventory_Detail__c id1 = new Inventory_Detail__c();
|
id1.Asset__c = assetA1.Id;
|
id1.Amount__c = assetA1.Quantity;
|
id1.WH_Location__c = assetA1.WH_location__c;
|
id1.OneToOne_Body__c = false;
|
id1.OneToOne_Accsessary__c = false;
|
id1.Asset_Status__c = '在库';
|
id1.Sync_Asset_Record_Flag__c = true;
|
id1.UniqueKey__c = header.Id+':'+pro1.Fixture_Model_No__c+':在库:'+null+':'+assetA1.Id;
|
id1.Fixture_Model_No__c = pro1.Fixture_Model_No__c;
|
id1.Internal_asset_location__c = cunFangDi;
|
id1.Inventory_Time__c = Date.toDay();
|
id1.Inventory_Header__c = header.Id;
|
|
Inventory_Detail__c id2 = new Inventory_Detail__c();
|
id2.Asset__c = assetA2.Id;
|
id2.Amount__c = 1;
|
id2.WH_Location__c = assetA2.WH_location__c;
|
id2.OneToOne_Body__c = false;
|
id2.OneToOne_Accsessary__c = false;
|
id2.Asset_Status__c = '维修中';
|
id2.Sync_Asset_Record_Flag__c = false;
|
id2.UniqueKey__c = header.Id+':'+pro2.Fixture_Model_No__c+':维修中:'+null+':'+assetA2.Id+':'+repair.Id;
|
id2.Fixture_Model_No__c = pro2.Fixture_Model_No__c;
|
id2.Internal_asset_location__c = cunFangDi;
|
id2.Inventory_Time__c = Date.toDay();
|
id2.Inventory_Header__c = header.Id;
|
|
Inventory_Detail__c id3 = new Inventory_Detail__c();
|
id3.Asset__c = assetA3.Id;
|
id3.Amount__c = 9;
|
id3.WH_Location__c = assetA3.WH_location__c;
|
id3.OneToOne_Body__c = false;
|
id3.OneToOne_Accsessary__c = false;
|
id3.Asset_Status__c = '丢失借出明细';
|
id3.Sync_Asset_Record_Flag__c = true;
|
id3.UniqueKey__c = header.Id+':'+pro3.Fixture_Model_No__c+':丢失借出明细:'+null+':'+assetA3.Id;
|
id3.Fixture_Model_No__c = pro3.Fixture_Model_No__c;
|
id3.Internal_asset_location__c = cunFangDi;
|
id3.Inventory_Time__c = Date.toDay();
|
id3.Inventory_Header__c = header.Id;
|
|
Inventory_Detail__c id4 = new Inventory_Detail__c();
|
id4.Asset__c = assetA3.Id;
|
id4.Amount__c = 1;
|
id4.WH_Location__c = assetA3.WH_location__c;
|
id4.OneToOne_Body__c = false;
|
id4.OneToOne_Accsessary__c = false;
|
id4.Asset_Status__c = '出借中';
|
id4.Sync_Asset_Record_Flag__c = false;
|
id4.UniqueKey__c = header.Id+':'+pro3.Fixture_Model_No__c+':出借中:'+null+':'+assetA3.Id;
|
id4.Fixture_Model_No__c = pro3.Fixture_Model_No__c;
|
id4.Internal_asset_location__c = cunFangDi;
|
id4.Inventory_Time__c = Date.toDay();
|
id4.Inventory_Header__c = header.Id;
|
|
Inventory_Detail__c id5 = new Inventory_Detail__c();
|
id5.Asset__c = assetA2.Id;
|
id5.Amount__c = 7;
|
id5.WH_Location__c = assetA2.WH_location__c;
|
id5.OneToOne_Body__c = false;
|
id5.OneToOne_Accsessary__c = false;
|
id5.Asset_Status__c = '丢失调拨明细';
|
id5.Sync_Asset_Record_Flag__c = true;
|
id5.UniqueKey__c = header.Id+':'+pro2.Fixture_Model_No__c+':丢失调拨明细:'+null+':'+assetA2.Id;
|
id5.Fixture_Model_No__c = pro2.Fixture_Model_No__c;
|
id5.Internal_asset_location__c = cunFangDi;
|
id5.Inventory_Time__c = Date.toDay();
|
id5.Inventory_Header__c = header.Id;
|
|
Inventory_Detail__c id6 = new Inventory_Detail__c();
|
id6.Asset__c = assetA2.Id;
|
id6.Amount__c = 2;
|
id6.WH_Location__c = assetA2.WH_location__c;
|
id6.OneToOne_Body__c = false;
|
id6.OneToOne_Accsessary__c = false;
|
id6.Asset_Status__c = '冻结';
|
id6.Sync_Asset_Record_Flag__c = false;
|
id6.UniqueKey__c = header.Id+':'+pro2.Fixture_Model_No__c+':冻结:'+null+':'+assetA2.Id;
|
id6.Fixture_Model_No__c = pro2.Fixture_Model_No__c;
|
id6.Internal_asset_location__c = cunFangDi;
|
id6.Inventory_Time__c = Date.toDay();
|
id6.Inventory_Header__c = header.Id;
|
|
Inventory_Detail__c id7 = new Inventory_Detail__c();
|
id7.Asset__c = assetA2.Id;
|
id7.Amount__c = 2;
|
id7.WH_Location__c = assetA2.WH_location__c;
|
id7.OneToOne_Body__c = false;
|
id7.OneToOne_Accsessary__c = false;
|
id7.Asset_Status__c = '丢失';
|
id7.Sync_Asset_Record_Flag__c = false;
|
id7.UniqueKey__c = header.Id+':'+pro2.Fixture_Model_No__c+':丢失:'+null+':'+assetA2.Id;
|
id7.Fixture_Model_No__c = pro2.Fixture_Model_No__c;
|
id7.Internal_asset_location__c = cunFangDi;
|
id7.Inventory_Time__c = Date.toDay();
|
id7.Inventory_Header__c = header.Id;
|
|
Inventory_Detail__c id8 = new Inventory_Detail__c();
|
id8.Asset__c = assetA2.Id;
|
id8.Amount__c = 2;
|
id8.WH_Location__c = assetA2.WH_location__c;
|
id8.OneToOne_Body__c = false;
|
id8.OneToOne_Accsessary__c = false;
|
id8.Asset_Status__c = '调拨中';
|
id8.Sync_Asset_Record_Flag__c = false;
|
id8.UniqueKey__c = header.Id+':'+pro2.Fixture_Model_No__c+':调拨中:'+null+':'+assetA2.Id;
|
id8.Fixture_Model_No__c = pro2.Fixture_Model_No__c;
|
id8.Internal_asset_location__c = cunFangDi;
|
id8.Inventory_Time__c = Date.toDay();
|
id8.Inventory_Header__c = header.Id;
|
|
insert new Inventory_Detail__c[] {id1, id2, id3, id4, id5, id6,id7,id8};
|
}
|
/**
|
* after update Inventory_Header__c
|
* trigger调用InventoryReportDetailArchiveBatch => approvalIHD()
|
* 盘点表头 盘点状态为已批准
|
* oObj.Inventory_Status__c != '已批准'
|
* nObj.Inventory_Status__c == '已批准'
|
*/
|
static testMethod void testMethod1() {
|
// bp3_Setting__c conf = bp3_Setting__c.getOrgDefaults();
|
// conf.BJ_Start_Inventory_User__c = UserInfo.getUserId();
|
// conf.InventoryDetailArchiveFolder__c = UserInfo.getUserId();
|
// insert conf;
|
|
setupTestData();
|
|
//盘点表头
|
List<Inventory_Header__c> headerList = [select UniqueKey__c,Inventory_Start_Date__c,Internal_asset_location__c,Id from Inventory_Header__c];
|
System.assertEquals(1, headerList.size());
|
|
System.Test.StartTest();
|
Database.executeBatch(new InventoryReportDetailArchiveBatch(headerList[0]));
|
System.Test.StopTest();
|
}
|
|
static testMethod void testMethod2() {
|
// bp3_Setting__c conf = bp3_Setting__c.getOrgDefaults();
|
// conf.BJ_Start_Inventory_User__c = UserInfo.getUserId();
|
// conf.InventoryDetailArchiveFolder__c = UserInfo.getUserId();
|
// insert conf;
|
|
setupTestData();
|
|
//盘点表头
|
List<Inventory_Header__c> headerList = [select UniqueKey__c,Inventory_Start_Date__c,Internal_asset_location__c,Id from Inventory_Header__c];
|
System.assertEquals(1, headerList.size());
|
|
System.Test.StartTest();
|
String typeStr = 'Asset';
|
String filename = headerList[0].Inventory_Start_Date__c.year() + ('' + headerList[0].Inventory_Start_Date__c.month()).leftPad(2, '0')
|
+ '_' + headerList[0].Internal_asset_location__c + '_' + typeStr + '.csv';
|
|
ContentVersion version = new ContentVersion();
|
version.Title = filename;
|
version.VersionData = EncodingUtil.base64Decode('test');
|
version.PathOnClient = filename+'.csv';
|
Insert version;
|
version = [select ContentDocumentId from ContentVersion where Id =: version.id];
|
ContentDocumentLink link = new ContentDocumentLink();
|
link.ContentDocumentId = version.ContentDocumentId;
|
link.LinkedEntityId = System.Label.InventoryFolder;
|
link.ShareType = 'I';
|
link.Visibility = 'AllUsers';
|
StaticParameter.ContentDocumentLink = false;
|
insert link;
|
|
Database.executeBatch(new InventoryReportDetailArchiveBatch(headerList[0]));
|
System.Test.StopTest();
|
}
|
}
|