liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/**
 * This class contains unit tests for validating the behavior of Apex classes
 * and triggers.
 *
 * Unit tests are class methods that verify whether a particular piece
 * of code is working properly. Unit test methods take no arguments,
 * commit no data to the database, and are flagged with the testMethod
 * keyword in the method definition.
 *
 * All test methods in an organization are executed whenever Apex code is deployed
 * to a production organization to confirm correctness, ensure code
 * coverage, and prevent regressions. All Apex classes are
 * required to have at least 75% code coverage in order to be deployed
 * to a production organization. In addition, all triggers must have some code coverage.
 * 
 * The @isTest class annotation indicates this class only contains test
 * methods. Classes defined with the @isTest annotation do not count against
 * the organization size limit for all Apex scripts.
 *
 * See the Apex Language Reference for more information about Testing and Code Coverage.
 */
@isTest
private class ContentPreviewControllerTest {
 
    static testMethod void myUnitTest() {
        Document doc1 = new Document(
            Name = '20151111_testdoc1_test1',
            DeveloperName = 'testdoc1',
            // The FolderId lookup on Document is actually a polymorphic field that can lookup to a Folder or a User 
            FolderId = UserInfo.getUserId(),
            Body = EncodingUtil.base64Decode('test1')
        );
        Document doc2 = new Document(
            Name = '20151111_testdoc2_test2',
            DeveloperName = 'testdoc2',
            // The FolderId lookup on Document is actually a polymorphic field that can lookup to a Folder or a User 
            FolderId = UserInfo.getUserId(),
            Body = EncodingUtil.base64Decode('test2')
        );
        Document doc3 = new Document(
            Name = '20151111_testdoc3_test3',
            DeveloperName = 'testdoc3',
            // The FolderId lookup on Document is actually a polymorphic field that can lookup to a Folder or a User 
            FolderId = UserInfo.getUserId(),
            Body = EncodingUtil.base64Decode('test3')
        );
        insert new Document[] {doc1, doc2, doc3};
        
        RecordType rt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP'];
        Account hp1 = new Account(
            RecordTypeId = rt.Id,
            Name = 'test hp'
            //AnalysisContentId__c = doc1.Id + ',' + doc2.Id + ',' + doc3.Id + ',' + doc1.Id + ',' + doc2.Id + ',' + doc3.Id + ',' + doc3.Id
        );
        Account hp2 = new Account(
            RecordTypeId = rt.Id,
            Name = 'test hp2'
        );
        insert new Account[] { hp1, hp2 };
        
        Account2__c acc1 = [select Id from Account2__c where Account__c = :hp1.Id];
        acc1.AnalysisContentId__c = doc1.Id + ',' + doc2.Id + ',' + doc3.Id + ',' + doc1.Id + ',' + doc2.Id + ',' + doc3.Id + ',' + doc3.Id;
        acc1.AnalysisContentDate__c = Date.today();
        update acc1;
        //Account2__c acc12 = [select Id from Account2__c where Account__c = :hp2.Id];
        //acc2.AnalysisContentId__c = doc1.Id + ',' + doc2.Id + ',' + doc3.Id + ',' + doc1.Id + ',' + doc2.Id + ',' + doc3.Id + ',' + doc3.Id;
        //acc2.AnalysisContentDate__c = Date.today();
        
        PageReference page = new PageReference('/apex/ContentPreview?id=' + hp2.Id);
        System.Test.setCurrentPage(page);
        ContentPreviewController cpc = new ContentPreviewController();
        cpc.init();
       // System.assertEquals(true, cpc.noDoc);
        
        page = new PageReference('/apex/ContentPreview?id=' + hp1.Id);
        System.Test.setCurrentPage(page);
        cpc = new ContentPreviewController();
        cpc.init();
        // System.assertEquals(doc3.Id, cpc.xlsId);
        
        Map<String, Object> docMap = ContentPreviewController.getDocumentBody(doc1.Id);
        System.assertEquals('testdoc1_test1', docMap.get('name'));
        
        ContentPreviewController.saveComment('subject', 'comment', doc1.Id, hp1.Id);
        
        cpc.docId = doc1.Id;
        cpc.dummyReport.OwnerId = UserInfo.getUserId();
        cpc.sendDlRequest();
        List<BatchIF_Log__c> bList = [select Id, Log__c from BatchIF_Log__c where Type__c = 'DlRequest'];
        System.assertEquals(1, bList.size());
        System.assertEquals('test hp', bList[0].Log__c);
        
        cpc.sendRefRequest();
        bList = [select Id, Log__c from BatchIF_Log__c where Type__c = 'RefRequest' and Account__c = :hp1.Id];
        System.assertEquals(1, bList.size());
    }
}