2019-01-24 14:28:25 +01:00
|
|
|
package lnd
|
2017-12-15 17:06:20 -06:00
|
|
|
|
2019-06-23 00:07:10 -04:00
|
|
|
import (
|
|
|
|
"testing"
|
2021-08-04 18:27:27 -07:00
|
|
|
|
|
|
|
"github.com/lightningnetwork/lnd/lncfg"
|
2019-06-23 00:07:10 -04:00
|
|
|
)
|
2017-12-15 17:06:20 -06:00
|
|
|
|
2021-08-04 18:27:27 -07:00
|
|
|
// TestShouldPeerBootstrap tests that we properly skip network bootstrap for
|
|
|
|
// the developer networks, and also if bootstrapping is explicitly disabled.
|
|
|
|
func TestShouldPeerBootstrap(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
cfg *Config
|
|
|
|
shouldBoostrap bool
|
|
|
|
}{
|
|
|
|
// Simnet active, no bootstrap.
|
|
|
|
{
|
|
|
|
cfg: &Config{
|
|
|
|
Bitcoin: &lncfg.Chain{
|
|
|
|
SimNet: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// Regtest active, no bootstrap.
|
|
|
|
{
|
|
|
|
cfg: &Config{
|
|
|
|
Bitcoin: &lncfg.Chain{
|
|
|
|
RegTest: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// Signet active, no bootstrap.
|
|
|
|
{
|
|
|
|
cfg: &Config{
|
|
|
|
Bitcoin: &lncfg.Chain{
|
|
|
|
SigNet: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2022-01-13 18:29:43 +02:00
|
|
|
// Mainnet active, but bootstrap disabled, no bootstrap.
|
2021-08-04 18:27:27 -07:00
|
|
|
{
|
|
|
|
cfg: &Config{
|
|
|
|
Bitcoin: &lncfg.Chain{
|
|
|
|
MainNet: true,
|
|
|
|
},
|
|
|
|
NoNetBootstrap: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2022-01-13 18:29:43 +02:00
|
|
|
// Mainnet active, should bootstrap.
|
2021-08-04 18:27:27 -07:00
|
|
|
{
|
|
|
|
cfg: &Config{
|
|
|
|
Bitcoin: &lncfg.Chain{
|
|
|
|
MainNet: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldBoostrap: true,
|
|
|
|
},
|
|
|
|
|
2022-01-13 18:29:43 +02:00
|
|
|
// Testnet active, should bootstrap.
|
2021-08-04 18:27:27 -07:00
|
|
|
{
|
|
|
|
cfg: &Config{
|
|
|
|
Bitcoin: &lncfg.Chain{
|
|
|
|
TestNet3: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldBoostrap: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for i, testCase := range testCases {
|
|
|
|
bootstrapped := shouldPeerBootstrap(testCase.cfg)
|
|
|
|
if bootstrapped != testCase.shouldBoostrap {
|
|
|
|
t.Fatalf("#%v: expected bootstrap=%v, got bootstrap=%v",
|
|
|
|
i, testCase.shouldBoostrap, bootstrapped)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|