@@ -63,6 +63,13 @@ func TestLedgerConfigPathDefault(t *testing.T) {
63
63
testutil .AssertEquals (t ,
64
64
GetBlockStorePath (),
65
65
"/var/hyperledger/production/ledgersData/chains" )
66
+ testutil .AssertEquals (t ,
67
+ GetPvtdataStorePath (),
68
+ "/var/hyperledger/production/ledgersData/pvtdataStore" )
69
+ testutil .AssertEquals (t ,
70
+ GetInternalBookkeeperPath (),
71
+ "/var/hyperledger/production/ledgersData/bookkeeper" )
72
+
66
73
}
67
74
68
75
func TestLedgerConfigPath (t * testing.T ) {
@@ -84,6 +91,12 @@ func TestLedgerConfigPath(t *testing.T) {
84
91
testutil .AssertEquals (t ,
85
92
GetBlockStorePath (),
86
93
"/tmp/hyperledger/production/ledgersData/chains" )
94
+ testutil .AssertEquals (t ,
95
+ GetPvtdataStorePath (),
96
+ "/tmp/hyperledger/production/ledgersData/pvtdataStore" )
97
+ testutil .AssertEquals (t ,
98
+ GetInternalBookkeeperPath (),
99
+ "/tmp/hyperledger/production/ledgersData/bookkeeper" )
87
100
}
88
101
89
102
func TestGetQueryLimitDefault (t * testing.T ) {
@@ -106,6 +119,54 @@ func TestGetQueryLimit(t *testing.T) {
106
119
testutil .AssertEquals (t , updatedValue , 5000 ) //test config returns 5000
107
120
}
108
121
122
+ func TestMaxBatchUpdateSizeDefault (t * testing.T ) {
123
+ setUpCoreYAMLConfig ()
124
+ defaultValue := GetMaxBatchUpdateSize ()
125
+ testutil .AssertEquals (t , defaultValue , 1000 ) //test default config is 1000
126
+ }
127
+
128
+ func TestMaxBatchUpdateSizeUnset (t * testing.T ) {
129
+ viper .Reset ()
130
+ defaultValue := GetMaxBatchUpdateSize ()
131
+ testutil .AssertEquals (t , defaultValue , 500 ) // 500 if maxBatchUpdateSize is not set
132
+ }
133
+
134
+ func TestMaxBatchUpdateSize (t * testing.T ) {
135
+ setUpCoreYAMLConfig ()
136
+ defer ledgertestutil .ResetConfigToDefaultValues ()
137
+ viper .Set ("ledger.state.couchDBConfig.maxBatchUpdateSize" , 2000 )
138
+ updatedValue := GetMaxBatchUpdateSize ()
139
+ testutil .AssertEquals (t , updatedValue , 2000 ) //test config returns 2000
140
+ }
141
+
142
+ func TestPvtdataStorePurgeIntervalDefault (t * testing.T ) {
143
+ setUpCoreYAMLConfig ()
144
+ defaultValue := GetPvtdataStorePurgeInterval ()
145
+ testutil .AssertEquals (t , defaultValue , uint64 (100 )) //test default config is 100
146
+ }
147
+
148
+ func TestPvtdataStorePurgeIntervalUnset (t * testing.T ) {
149
+ viper .Reset ()
150
+ defaultValue := GetPvtdataStorePurgeInterval ()
151
+ testutil .AssertEquals (t , defaultValue , uint64 (100 )) // 100 if purgeInterval is not set
152
+ }
153
+
154
+ func TestIsQueryReadHasingEnabled (t * testing.T ) {
155
+ testutil .AssertEquals (t , IsQueryReadsHashingEnabled (), true )
156
+ }
157
+
158
+ func TestGetMaxDegreeQueryReadsHashing (t * testing.T ) {
159
+ testutil .AssertEquals (t , GetMaxDegreeQueryReadsHashing (), uint32 (50 ))
160
+ }
161
+
162
+ func TestPvtdataStorePurgeInterval (t * testing.T ) {
163
+ setUpCoreYAMLConfig ()
164
+ defer ledgertestutil .ResetConfigToDefaultValues ()
165
+ viper .Set ("ledger.pvtdataStore.purgeInterval" , 1000 )
166
+ updatedValue := GetPvtdataStorePurgeInterval ()
167
+ testutil .AssertEquals (t , updatedValue , uint64 (1000 )) //test config returns 1000
168
+ }
169
+
109
170
func TestIsHistoryDBEnabledDefault (t * testing.T ) {
110
171
setUpCoreYAMLConfig ()
111
172
defaultValue := IsHistoryDBEnabled ()
@@ -134,6 +195,12 @@ func TestIsAutoWarmIndexesEnabledDefault(t *testing.T) {
134
195
testutil .AssertEquals (t , defaultValue , true ) //test default config is true
135
196
}
136
197
198
+ func TestIsAutoWarmIndexesEnabledUnset (t * testing.T ) {
199
+ viper .Reset ()
200
+ defaultValue := IsAutoWarmIndexesEnabled ()
201
+ testutil .AssertEquals (t , defaultValue , true ) //test default config is true
202
+ }
203
+
137
204
func TestIsAutoWarmIndexesEnabledTrue (t * testing.T ) {
138
205
setUpCoreYAMLConfig ()
139
206
defer ledgertestutil .ResetConfigToDefaultValues ()
@@ -156,6 +223,12 @@ func TestGetWarmIndexesAfterNBlocksDefault(t *testing.T) {
156
223
testutil .AssertEquals (t , defaultValue , 1 ) //test default config is true
157
224
}
158
225
226
+ func TestGetWarmIndexesAfterNBlocksUnset (t * testing.T ) {
227
+ viper .Reset ()
228
+ defaultValue := GetWarmIndexesAfterNBlocks ()
229
+ testutil .AssertEquals (t , defaultValue , 1 ) //test default config is true
230
+ }
231
+
159
232
func TestGetWarmIndexesAfterNBlocks (t * testing.T ) {
160
233
setUpCoreYAMLConfig ()
161
234
defer ledgertestutil .ResetConfigToDefaultValues ()
@@ -164,6 +237,10 @@ func TestGetWarmIndexesAfterNBlocks(t *testing.T) {
164
237
testutil .AssertEquals (t , updatedValue , 10 )
165
238
}
166
239
240
+ func TestGetMaxBlockfileSize (t * testing.T ) {
241
+ testutil .AssertEquals (t , GetMaxBlockfileSize (), 67108864 )
242
+ }
243
+
167
244
func setUpCoreYAMLConfig () {
168
245
//call a helper method to load the core.yaml
169
246
ledgertestutil .SetupCoreYAMLConfig ()
0 commit comments