Skip to content

Commit 8116dda

Browse files
committed
refactor: fix CI
1 parent b47432b commit 8116dda

File tree

8 files changed

+36
-5
lines changed

8 files changed

+36
-5
lines changed

config/karma-electron.conf.js

+2
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ module.exports = function (config) {
119119
browserNoActivityTimeout: mochaConfig.timeout,
120120
browserDisconnectTimeout: mochaConfig.timeout,
121121
browserDisconnectTolerance: 5,
122+
// to have time to check the console logs
123+
// processKillTimeout: 600000,
122124
})
123125
}
124126

src/stores/accounts/accounts-database.ts

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ const addAccount = async (account: Account) => {
9393
// make sure accountToPutInDatabase.plebbitOptions are valid
9494
if (accountToPutInDatabase.plebbitOptions) {
9595
const plebbit = await PlebbitJs.Plebbit(accountToPutInDatabase.plebbitOptions)
96+
plebbit.on('error', () => {})
9697
plebbit.destroy?.().catch?.((error: any) => log('database.addAccount plebbit.destroy error', {error})) // make sure it's garbage collected
9798
}
9899
await accountsDatabase.setItem(accountToPutInDatabase.id, accountToPutInDatabase)

test/browser-e2e/accounts.test.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const {act, renderHook} = require('@testing-library/react-hooks/dom')
33
const {useAccount, useAccountVotes, useAccountComments, debugUtils} = require('../../dist')
44
const accountsActions = require('../../dist/stores/accounts/accounts-actions')
55
const testUtils = require('../../dist/lib/test-utils').default
6-
const {offlineIpfs, pubsubIpfs} = require('../test-server/config')
6+
const {offlineIpfs, pubsubIpfs, plebbitRpc} = require('../test-server/config')
77
const signers = require('../fixtures/signers')
88
const subplebbitAddress = signers[0].address
99

@@ -16,17 +16,25 @@ const timeout = 600000
1616
const localGatewayUrl = `http://localhost:${offlineIpfs.gatewayPort}`
1717
const localIpfsProviderUrl = `http://localhost:${offlineIpfs.apiPort}`
1818
const localPubsubProviderUrl = `http://localhost:${pubsubIpfs.apiPort}/api/v0`
19+
const localPlebbitRpcUrl = `ws://127.0.0.1:${plebbitRpc.port}`
1920
const plebbitOptionsTypes = {
2021
'kubo rpc client': {
2122
kuboRpcClientsOptions: [localIpfsProviderUrl],
2223
// define pubsubKuboRpcClientsOptions with localPubsubProviderUrl because
2324
// localIpfsProviderUrl is offline node with no pubsub
2425
pubsubKuboRpcClientsOptions: [localPubsubProviderUrl],
26+
resolveAuthorAddresses: false,
2527
validatePages: false,
2628
},
2729
'gateway and pubsub provider': {
2830
ipfsGatewayUrls: [localGatewayUrl],
2931
pubsubKuboRpcClientsOptions: [localPubsubProviderUrl],
32+
resolveAuthorAddresses: false,
33+
validatePages: false,
34+
},
35+
'plebbit rpc client': {
36+
plebbitRpcClientsOptions: [localPlebbitRpcUrl],
37+
resolveAuthorAddresses: false,
3038
validatePages: false,
3139
},
3240
}

test/browser-e2e/feeds.test.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const {act, renderHook} = require('@testing-library/react-hooks/dom')
33
const {useFeed, useBufferedFeeds, useAccount, useAccountVotes, useAccountComments, debugUtils} = require('../../dist')
44
const accountsActions = require('../../dist/stores/accounts/accounts-actions')
55
const testUtils = require('../../dist/lib/test-utils').default
6-
const {offlineIpfs, pubsubIpfs} = require('../test-server/config')
6+
const {offlineIpfs, pubsubIpfs, plebbitRpc} = require('../test-server/config')
77
const signers = require('../fixtures/signers')
88
const subplebbitAddress = signers[0].address
99
const isBase64 = (testString) => /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}))?$/gm.test(testString)
@@ -15,17 +15,25 @@ const timeout = 600000
1515
const localGatewayUrl = `http://localhost:${offlineIpfs.gatewayPort}`
1616
const localIpfsProviderUrl = `http://localhost:${offlineIpfs.apiPort}`
1717
const localPubsubProviderUrl = `http://localhost:${pubsubIpfs.apiPort}/api/v0`
18+
const localPlebbitRpcUrl = `ws://127.0.0.1:${plebbitRpc.port}`
1819
const plebbitOptionsTypes = {
1920
'kubo rpc client': {
2021
kuboRpcClientsOptions: [localIpfsProviderUrl],
2122
// define pubsubKuboRpcClientsOptions with localPubsubProviderUrl because
2223
// localIpfsProviderUrl is offline node with no pubsub
2324
pubsubKuboRpcClientsOptions: [localPubsubProviderUrl],
25+
resolveAuthorAddresses: false,
2426
validatePages: false,
2527
},
2628
'gateway and pubsub provider': {
2729
ipfsGatewayUrls: [localGatewayUrl],
2830
pubsubKuboRpcClientsOptions: [localPubsubProviderUrl],
31+
resolveAuthorAddresses: false,
32+
validatePages: false,
33+
},
34+
'plebbit rpc client': {
35+
plebbitRpcClientsOptions: [localPlebbitRpcUrl],
36+
resolveAuthorAddresses: false,
2937
validatePages: false,
3038
},
3139
}

test/browser-e2e/subplebbits.test.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const accountsActions = require('../../dist/stores/accounts/accounts-actions')
55
const testUtils = require('../../dist/lib/test-utils').default
66
const signers = require('../fixtures/signers')
77
const subplebbitAddress = signers[0].address
8-
const {offlineIpfs, pubsubIpfs} = require('../test-server/config')
8+
const {offlineIpfs, pubsubIpfs, plebbitRpc} = require('../test-server/config')
99

1010
// large value for manual debugging
1111
const timeout = 600000
@@ -15,17 +15,25 @@ const isBase64 = (testString) => /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-
1515
const localGatewayUrl = `http://localhost:${offlineIpfs.gatewayPort}`
1616
const localIpfsProviderUrl = `http://localhost:${offlineIpfs.apiPort}`
1717
const localPubsubProviderUrl = `http://localhost:${pubsubIpfs.apiPort}/api/v0`
18+
const localPlebbitRpcUrl = `ws://127.0.0.1:${plebbitRpc.port}`
1819
const plebbitOptionsTypes = {
1920
'kubo rpc client': {
2021
kuboRpcClientsOptions: [localIpfsProviderUrl],
2122
// define pubsubKuboRpcClientsOptions with localPubsubProviderUrl because
2223
// localIpfsProviderUrl is offline node with no pubsub
2324
pubsubKuboRpcClientsOptions: [localPubsubProviderUrl],
25+
resolveAuthorAddresses: false,
2426
validatePages: false,
2527
},
2628
'gateway and pubsub provider': {
2729
ipfsGatewayUrls: [localGatewayUrl],
2830
pubsubKuboRpcClientsOptions: [localPubsubProviderUrl],
31+
resolveAuthorAddresses: false,
32+
validatePages: false,
33+
},
34+
'plebbit rpc client': {
35+
plebbitRpcClientsOptions: [localPlebbitRpcUrl],
36+
resolveAuthorAddresses: false,
2937
validatePages: false,
3038
},
3139
}

test/electron-e2e/accounts.test.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ const localPlebbitRpcUrl = `ws://127.0.0.1:${plebbitRpc.port}`
1919
const plebbitOptionsTypes = {
2020
'plebbit rpc client': {
2121
plebbitRpcClientsOptions: [localPlebbitRpcUrl],
22-
validatePages: false,
22+
resolveAuthorAddresses: false,
23+
// validatePages: false,
2324
dataPath: window.plebbitDataPath,
2425
publishInterval: 1000,
2526
updateInterval: 1000,
@@ -106,7 +107,7 @@ for (const plebbitOptionsType in plebbitOptionsTypes) {
106107
console.log('after set account')
107108
})
108109

109-
it('create and edit a subplebbit', async () => {
110+
it.only('create and edit a subplebbit', async () => {
110111
console.log('before create subplebbit')
111112
const createdSubplebbitTitle = 'my title'
112113
let subplebbit

test/electron-e2e/subplebbits.test.js

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ const localPlebbitRpcUrl = `ws://127.0.0.1:${plebbitRpc.port}`
1919
const plebbitOptionsTypes = {
2020
'plebbit rpc client': {
2121
plebbitRpcClientsOptions: [localPlebbitRpcUrl],
22+
resolveAuthorAddresses: false,
2223
validatePages: false,
2324
dataPath: window.plebbitDataPath,
2425
publishInterval: 1000,

test/test-server/start-plebbit-rpc.js

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ const startPlebbitRpc = async ({port, ipfsApiPort, pubsubApiPort}) => {
1212
kuboRpcClientsOptions: [`http://127.0.0.1:${ipfsApiPort}/api/v0`],
1313
pubsubKuboRpcClientsOptions: [`http://127.0.0.1:${pubsubApiPort}/api/v0`],
1414
httpRoutersOptions: [],
15+
resolveAuthorAddresses: false,
16+
validatePages: false,
1517
}
1618

1719
console.log('plebbit rpc: starting...')

0 commit comments

Comments
 (0)