高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
@isTest
private class SelectAssetExtensionTester {
    private static Id pricebookId = ControllerUtil.getStandardPricebook().Id;
    static Asset createAsset(String input, String accountid, String dcId, String hpId) {
        Asset asset = new Asset();
        asset.Name = 'テスト機器';
        asset.AccountId = accountid;
        asset.Department_Class__c = dcId;
        asset.Hospital__c = hpId;
        asset.SerialNumber = 'testserial';
        insert asset;
        return asset;
    }
    
    static testMethod void myTest01() {
        // 病院を作る
        Account hospital = new Account();
        hospital.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP'].id;
        hospital.Name = 'test hospital';
        insert hospital;
        
        // 戦略科室を得る
        List<Account> strategicDep = [SELECT ID, Name FROM Account WHERE parentId = :hospital.Id AND recordType.DeveloperName = 'Department_Class_GI'];
        
        // 診療科を作る
        Account dep = new Account();
        dep.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_GI'].id;
        dep.Name = 'test dep';
        dep.ParentId = strategicDep[0].Id;
        dep.Department_Class__c = strategicDep[0].Id;
        dep.Hospital__c = hospital.Id;
        insert dep;
        
        // 製品を作る
        Product2 productA = new Product2( Name='テスト商品');
        insert productA;
        
        // 価格表エントリを作成する     
        PricebookEntry entry = new PricebookEntry( Pricebook2Id=pricebookId, Product2Id=productA.Id);
        entry.UnitPrice = 0;
        entry.IsActive = true;
        entry.UseStandardPrice = false;
        entry.CurrencyIsoCode = 'CNY';
        entry.Product2Id = productA.Id;
        insert entry;
        
        // 納入機器を作成する
        Asset asset01 = createAsset('asset01', dep.Id, strategicDep[0].Id, hospital.Id);
        Asset asset02 = createAsset('asset02', dep.Id, strategicDep[0].Id, hospital.Id);
        Asset asset03 = createAsset('asset03', dep.Id, strategicDep[0].Id, hospital.Id);
        Asset asset04 = createAsset('asset04', dep.Id, strategicDep[0].Id, hospital.Id);
        Asset asset05 = createAsset('asset05', dep.Id, strategicDep[0].Id, hospital.Id);
        
        // 维修合同を作成する
        Maintenance_Contract__c contract = new Maintenance_Contract__c();
        contract.Name = 'tect contract';
        contract.Hospital__c = hospital.Id;
        contract.Department_Class__c = strategicDep[0].Id;
        contract.Department__c = dep.Id;
        insert contract;
 
        //List<Maintenance_Contract_Asset__c> selectedAsset = [SELECT Id, Name, Maintenance_Contract__c, Asset__c FROM Maintenance_Contract_Asset__c WHERE Maintenance_Contract__c = :contract.Id];
        //System.assertEquals( 5, selectedAsset.size()); 
        // Visualforceページの引数設定
        ApexPages.currentPage().getParameters().put( 'targetContractId', contract.Id);
        
        // テスト対象クラス実体化
        ApexPages.StandardController sc = new ApexPages.StandardController( contract);
        SelectAssetExtension target = new SelectAssetExtension( sc);
        
 
        List<Asset> assetRecords = [SELECT Id, Name, CheckBox__c, SerialNumber,
                                 Department_Name__c, Installation_Site__c, Posting_Date__c,
                                 Asset_Owner__c
                                 FROM Asset
                                 WHERE Hospital__c = :hospital.Id
                                         AND ( AssetMark__c != '耗材' OR Product2.Family != 'ET' )
                                         ORDER BY Department_Name__c, Posting_Date__c, SerialNumber];
        System.assertEquals( 5, assetRecords.size());
 
 
        target.init();
        //20191220 modify start
        //List<Asset> assets01 = target.assetRecords
        System.assertEquals( 1, target.assetLists.size()); 
        List<Asset> assets01 = new List<Asset>();
        if (target.assetLists.size() > 0) {
            assets01 = target.assetLists[0];
        }
        System.assertEquals( 5, assets01.size());
        //20191220 modify end
        for ( Asset local : assets01) {
            System.assertEquals( local.checkBox__c, false, '01'); 
        }
        
        //target.cancel();
        
        target.save();
        List<Asset> assets02 =[SELECT ID, checkbox__c FROM Asset WHERE Id IN :assets01];
        for ( Asset local : assets02) {
            System.assertEquals( local.checkBox__c, false, '02');
            local.checkbox__c = true; 
        }
        
        target.save();
        List<Asset> assets03 =[SELECT ID, checkbox__c FROM Asset WHERE Id IN :assets01];
        for ( Asset local : assets03) {
            System.assertEquals( local.checkBox__c, false, '03');
        }
        
        //20191220 modify start
        assets01[0].checkbox__c = true;
        //target.assetRecords[0].checkbox__c = true;
 
        target.save();
    }
    
    static testMethod void sortTableTest() {
        // 病院を作る
        Account hospital = new Account();
        hospital.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP'].id;
        hospital.Name = 'test hospital';
        insert hospital;
        
        // 戦略科室を得る
        List<Account> strategicDep = [SELECT ID, Name FROM Account WHERE parentId = :hospital.Id AND recordType.DeveloperName = 'Department_Class_GI'];
        
        // 診療科を作る
        Account dep = new Account();
        dep.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_GI'].id;
        dep.Name = 'test dep';
        dep.ParentId = strategicDep[0].Id;
        dep.Department_Class__c = strategicDep[0].Id;
        dep.Hospital__c = hospital.Id;
        insert dep;
        
        // 製品を作る
        Product2 productA = new Product2( Name='テスト商品');
        insert productA;
        
        // 価格表エントリを作成する     
        PricebookEntry entry = new PricebookEntry( Pricebook2Id=pricebookId, Product2Id=productA.Id);
        entry.UnitPrice = 0;
        entry.IsActive = true;
        entry.UseStandardPrice = false;
        entry.CurrencyIsoCode = 'CNY';
        entry.Product2Id = productA.Id;
        insert entry;
        
        // 納入機器を作成する
        Asset asset01 = createAsset('asset01', dep.Id, strategicDep[0].Id, hospital.Id);
        Asset asset02 = createAsset('asset02', dep.Id, strategicDep[0].Id, hospital.Id);
        Asset asset03 = createAsset('asset03', dep.Id, strategicDep[0].Id, hospital.Id);
        Asset asset04 = createAsset('asset04', dep.Id, strategicDep[0].Id, hospital.Id);
        Asset asset05 = createAsset('asset05', dep.Id, strategicDep[0].Id, hospital.Id);
        
        // 维修合同を作成する
        Maintenance_Contract__c contract = new Maintenance_Contract__c();
        contract.Name = 'tect contract';
        contract.Hospital__c = hospital.Id;
        contract.Department_Class__c = strategicDep[0].Id;
        contract.Department__c = dep.Id;
        insert contract;
        
        // Visualforceページの引数設定
        ApexPages.currentPage().getParameters().put( 'targetContractId', contract.Id);
        
        // テスト対象クラス実体化
        ApexPages.StandardController sc = new ApexPages.StandardController( contract);
        SelectAssetExtension target = new SelectAssetExtension( sc);
        
        target.init();
        
        target.getProductCount();
        
        target.sortKey = '1';
        //target.assetLists[0][0].checkbox__c = true;
        target.sortTable();
        target.sortTable();
    }
}