From d8dc84a3d56df839895f1c417a4d9cbee763d262 Mon Sep 17 00:00:00 2001
From: 高章伟 <gaozhangwei@prec-tech.com>
Date: 星期五, 03 三月 2023 14:50:59 +0800
Subject: [PATCH] gzw 测试环境代码更新

---
 force-app/main/default/classes/ControllerUtilTest.cls |  111 +++++++++++++++++++++++++++++++++++++++++++++++--------
 1 files changed, 95 insertions(+), 16 deletions(-)

diff --git a/force-app/main/default/classes/ControllerUtilTest.cls b/force-app/main/default/classes/ControllerUtilTest.cls
index 181f276..7fe12d3 100644
--- a/force-app/main/default/classes/ControllerUtilTest.cls
+++ b/force-app/main/default/classes/ControllerUtilTest.cls
@@ -34,6 +34,83 @@
     //    Account internalAcc = [Select Id from Account where Id = :System.Label.Olympus_AccountID_Internal_staff];
     //    // 銉囥兗銈裤亴銇傘倢銇癘K;
     //}
+     @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();
+    }
+
+    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;
+        // }
+    }
+    }
     private static User getUser() {
         String timenow = Datetime.now().format('yyyyMMddHHmmss');
         User user1 = new User(Test_staff__c = true, LastName = 'TestMao', FirstName = 'TestMaoF',
@@ -158,6 +235,7 @@
         Oly_TriggerHandler.bypass('PowerBIBaseHandler');
         Oly_TriggerHandler.bypass('AgencyOppUpdHandler');
         Oly_TriggerHandler.bypass('UpdateContractAimAmountHandler');
+        Oly_TriggerHandler.bypass('NFM701ControllerHandler');
         StaticParameter.EscapeNFM001AgencyContractTrigger = true;
         ControllerUtil.EscapeNFM001Trigger = true;
        
@@ -249,15 +327,15 @@
         accDep.CurrencyIsoCode = 'CNY';
         accDep.RecordTypeId = rtDep.id;
         insert accDep;
-        List<Contact> conList = new List<Contact>();
-        Contact con1 = new Contact();
-        con1.Firstname='ZZ1';
-        con1.LastName = '鍙栧紩鍏堣铂浠昏��1';
-        con1.RecordTypeId = rtDoc.id;
-        con1.AccountId = accDep.Id;
-        conList.add(con1);
+        //List<Contact> conList = new List<Contact>();
+        //Contact con1 = new Contact();
+        //con1.Firstname='ZZ1';
+        //con1.LastName = '鍙栧紩鍏堣铂浠昏��1';
+        //con1.RecordTypeId = rtDoc.id;
+        //con1.AccountId = accDep.Id;
+        //conList.add(con1);
 
-        insert conList;
+        //insert conList;
         RecordType Type = [select id from RecordType where DeveloperName='SI_Oppor'];
         String TypeID = Type.Id;
         Opportunity opp1 = new Opportunity();
@@ -333,6 +411,7 @@
         Oly_TriggerHandler.bypass('PowerBIBaseHandler');
         Oly_TriggerHandler.bypass('AgencyOppUpdHandler');
         Oly_TriggerHandler.bypass('UpdateContractAimAmountHandler');
+        Oly_TriggerHandler.bypass('NFM701ControllerHandler');
         StaticParameter.EscapeNFM001AgencyContractTrigger = true;
         ControllerUtil.EscapeNFM001Trigger = true;
         
@@ -424,15 +503,15 @@
         accDep.CurrencyIsoCode = 'CNY';
         accDep.RecordTypeId = rtDep.id;
         insert accDep;
-        List<Contact> conList = new List<Contact>();
-        Contact con1 = new Contact();
-        con1.Firstname='ZZ1';
-        con1.LastName = '鍙栧紩鍏堣铂浠昏��1';
-        con1.RecordTypeId = rtDoc.id;
-        con1.AccountId = accDep.Id;
-        conList.add(con1);
+        //List<Contact> conList = new List<Contact>();
+        //Contact con1 = new Contact();
+        //con1.Firstname='ZZ1';
+        //con1.LastName = '鍙栧紩鍏堣铂浠昏��1';
+        //con1.RecordTypeId = rtDoc.id;
+        //con1.AccountId = accDep.Id;
+        //conList.add(con1);
 
-        insert conList;
+        //insert conList;
         RecordType Type = [select id from RecordType where DeveloperName='SI_Oppor'];
         String TypeID = Type.Id;
         Opportunity opp1 = new Opportunity();

--
Gitblit v1.9.1