@@ -220,6 +220,57 @@ test.describe.serial('Application launch', async () => {
220
220
expect ( config . Swarm . ConnMgr . HighWater ) . toEqual ( undefined )
221
221
} )
222
222
223
+ test ( 'applies config migration v6 (explicitly enable AutoTLS if upgrading from Kubo <0.33)' , async ( ) => {
224
+ // create preexisting, initialized repo and config
225
+ const { repoPath, configPath, peerId : expectedId } = await makeRepository ( { start : false } )
226
+
227
+ const initConfig = fs . readJsonSync ( configPath )
228
+ initConfig . AutoTLS = undefined // simulate kubo <0.33, where there was no AutoTLS section
229
+ fs . writeJsonSync ( configPath , initConfig , { spaces : 2 } )
230
+
231
+ const { app } = await startApp ( { repoPath } )
232
+ const { peerId } = await daemonReady ( app )
233
+ expect ( peerId ) . toBe ( expectedId )
234
+
235
+ const config = fs . readJsonSync ( configPath )
236
+ // ensure app has migrated config and AutoTLS is explicitly enabled now
237
+ expect ( config . AutoTLS . Enabled ) . toEqual ( true )
238
+ } )
239
+
240
+ test ( 'applies config migration v6 (explicitly enable AutoTLS if Kubo >=0.33)' , async ( ) => {
241
+ // create preexisting, initialized repo and config
242
+ const { repoPath, configPath, peerId : expectedId } = await makeRepository ( { start : false } )
243
+
244
+ // just read config (it should have empty AutoTLS config)
245
+ const initConfig = fs . readJsonSync ( configPath )
246
+ fs . writeJsonSync ( configPath , initConfig , { spaces : 2 } )
247
+
248
+ const { app } = await startApp ( { repoPath } )
249
+ const { peerId } = await daemonReady ( app )
250
+ expect ( peerId ) . toBe ( expectedId )
251
+
252
+ const config = fs . readJsonSync ( configPath )
253
+ // ensure ipfs-desktop migrated default Kubo config to explicitly enable AutoTLS
254
+ expect ( config . AutoTLS . Enabled ) . toEqual ( true )
255
+ } )
256
+
257
+ test ( 'applies config migration v6 (respect pre-existing AutoTLS user config)' , async ( ) => {
258
+ // create preexisting, initialized repo and config
259
+ const { repoPath, configPath, peerId : expectedId } = await makeRepository ( { start : false } )
260
+
261
+ const initConfig = fs . readJsonSync ( configPath )
262
+ initConfig . AutoTLS = { Enabled : false } // user explicitly disabled it
263
+ fs . writeJsonSync ( configPath , initConfig , { spaces : 2 } )
264
+
265
+ const { app } = await startApp ( { repoPath } )
266
+ const { peerId } = await daemonReady ( app )
267
+ expect ( peerId ) . toBe ( expectedId )
268
+
269
+ const config = fs . readJsonSync ( configPath )
270
+ // ensure app respected and kept user choice
271
+ expect ( config . AutoTLS . Enabled ) . toEqual ( false )
272
+ } )
273
+
223
274
test ( 'starts with repository with "IPFS_PATH/api" file and no daemon running' , async ( ) => {
224
275
// create "remote" repo
225
276
const { ipfsd } = await makeRepository ( { start : true } )
0 commit comments