mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 23:56:43 +00:00
* removed package naoina/toml from dumpconfig and added BurntSushi/toml * updated cmd/gethconfig.go
159 lines
3.6 KiB
Go
159 lines
3.6 KiB
Go
package server
|
|
|
|
import (
|
|
"math/big"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/ethereum/go-ethereum/eth/ethconfig"
|
|
"github.com/ethereum/go-ethereum/params"
|
|
)
|
|
|
|
func TestConfigLegacy(t *testing.T) {
|
|
|
|
readFile := func(path string) {
|
|
config, err := readLegacyConfig(path)
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, config, &Config{
|
|
Chain: "mainnet",
|
|
Identity: Hostname(),
|
|
RequiredBlocks: map[string]string{
|
|
"a": "b",
|
|
},
|
|
LogLevel: "INFO",
|
|
DataDir: "./data",
|
|
P2P: &P2PConfig{
|
|
MaxPeers: 30,
|
|
MaxPendPeers: 50,
|
|
Bind: "0.0.0.0",
|
|
Port: 30303,
|
|
NoDiscover: false,
|
|
NAT: "any",
|
|
Discovery: &P2PDiscovery{
|
|
V5Enabled: false,
|
|
Bootnodes: []string{},
|
|
BootnodesV4: []string{},
|
|
BootnodesV5: []string{},
|
|
StaticNodes: []string{},
|
|
TrustedNodes: []string{},
|
|
DNS: []string{},
|
|
},
|
|
},
|
|
Heimdall: &HeimdallConfig{
|
|
URL: "http://localhost:1317",
|
|
Without: false,
|
|
},
|
|
SyncMode: "full",
|
|
GcMode: "full",
|
|
Snapshot: true,
|
|
TxPool: &TxPoolConfig{
|
|
Locals: []string{},
|
|
NoLocals: false,
|
|
Journal: "",
|
|
Rejournal: 1 * time.Hour,
|
|
PriceLimit: 30000000000,
|
|
PriceBump: 10,
|
|
AccountSlots: 16,
|
|
GlobalSlots: 32768,
|
|
AccountQueue: 16,
|
|
GlobalQueue: 32768,
|
|
LifeTime: 1 * time.Second,
|
|
},
|
|
Sealer: &SealerConfig{
|
|
Enabled: false,
|
|
Etherbase: "",
|
|
GasCeil: 20000000,
|
|
GasPrice: big.NewInt(30000000000),
|
|
ExtraData: "",
|
|
},
|
|
Gpo: &GpoConfig{
|
|
Blocks: 20,
|
|
Percentile: 60,
|
|
MaxPrice: big.NewInt(5000 * params.GWei),
|
|
IgnorePrice: big.NewInt(4),
|
|
},
|
|
JsonRPC: &JsonRPCConfig{
|
|
IPCDisable: false,
|
|
IPCPath: "",
|
|
GasCap: ethconfig.Defaults.RPCGasCap,
|
|
TxFeeCap: ethconfig.Defaults.RPCTxFeeCap,
|
|
Http: &APIConfig{
|
|
Enabled: false,
|
|
Port: 8545,
|
|
Prefix: "",
|
|
Host: "localhost",
|
|
API: []string{"eth", "net", "web3", "txpool", "bor"},
|
|
Cors: []string{"*"},
|
|
VHost: []string{"*"},
|
|
},
|
|
Ws: &APIConfig{
|
|
Enabled: false,
|
|
Port: 8546,
|
|
Prefix: "",
|
|
Host: "localhost",
|
|
API: []string{"web3", "net"},
|
|
Cors: []string{"*"},
|
|
VHost: []string{"*"},
|
|
},
|
|
Graphql: &APIConfig{
|
|
Enabled: false,
|
|
Cors: []string{"*"},
|
|
VHost: []string{"*"},
|
|
},
|
|
},
|
|
Ethstats: "",
|
|
Telemetry: &TelemetryConfig{
|
|
Enabled: false,
|
|
Expensive: false,
|
|
PrometheusAddr: "",
|
|
OpenCollectorEndpoint: "",
|
|
InfluxDB: &InfluxDBConfig{
|
|
V1Enabled: false,
|
|
Endpoint: "",
|
|
Database: "",
|
|
Username: "",
|
|
Password: "",
|
|
Tags: map[string]string{},
|
|
V2Enabled: false,
|
|
Token: "",
|
|
Bucket: "",
|
|
Organization: "",
|
|
},
|
|
},
|
|
Cache: &CacheConfig{
|
|
Cache: 1024,
|
|
PercDatabase: 50,
|
|
PercTrie: 15,
|
|
PercGc: 25,
|
|
PercSnapshot: 10,
|
|
Journal: "triecache",
|
|
Rejournal: 1 * time.Second,
|
|
NoPrefetch: false,
|
|
Preimages: false,
|
|
TxLookupLimit: 2350000,
|
|
},
|
|
Accounts: &AccountsConfig{
|
|
Unlock: []string{},
|
|
PasswordFile: "",
|
|
AllowInsecureUnlock: false,
|
|
UseLightweightKDF: false,
|
|
DisableBorWallet: false,
|
|
},
|
|
GRPC: &GRPCConfig{
|
|
Addr: ":3131",
|
|
},
|
|
Developer: &DeveloperConfig{
|
|
Enabled: false,
|
|
Period: 0,
|
|
},
|
|
})
|
|
}
|
|
|
|
// read file in hcl format
|
|
t.Run("toml", func(t *testing.T) {
|
|
readFile("./testdata/test.toml")
|
|
})
|
|
}
|