You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

151 lines
4.4 KiB

9 years ago
9 years ago
  1. // Import this in all *_test.go files to initialize ~/.tendermint_test.
  2. package tendermint_test
  3. import (
  4. "os"
  5. "path"
  6. "strings"
  7. . "github.com/tendermint/go-common"
  8. cfg "github.com/tendermint/go-config"
  9. )
  10. func init() {
  11. // Creates ~/.tendermint_test
  12. EnsureDir(os.Getenv("HOME")+"/.tendermint_test", 0700)
  13. }
  14. func initTMRoot(rootDir string) {
  15. // Remove ~/.tendermint_test_bak
  16. if FileExists(rootDir + "_bak") {
  17. err := os.RemoveAll(rootDir + "_bak")
  18. if err != nil {
  19. PanicSanity(err.Error())
  20. }
  21. }
  22. // Move ~/.tendermint_test to ~/.tendermint_test_bak
  23. if FileExists(rootDir) {
  24. err := os.Rename(rootDir, rootDir+"_bak")
  25. if err != nil {
  26. PanicSanity(err.Error())
  27. }
  28. }
  29. // Create new dir
  30. EnsureDir(rootDir, 0700)
  31. configFilePath := path.Join(rootDir, "config.toml")
  32. genesisFilePath := path.Join(rootDir, "genesis.json")
  33. privFilePath := path.Join(rootDir, "priv_validator.json")
  34. // Write default config file if missing.
  35. if !FileExists(configFilePath) {
  36. // Ask user for moniker
  37. // moniker := cfg.Prompt("Type hostname: ", "anonymous")
  38. MustWriteFile(configFilePath, []byte(defaultConfig("anonymous")), 0644)
  39. }
  40. if !FileExists(genesisFilePath) {
  41. MustWriteFile(genesisFilePath, []byte(defaultGenesis), 0644)
  42. }
  43. // we always overwrite the priv val
  44. MustWriteFile(privFilePath, []byte(defaultPrivValidator), 0644)
  45. }
  46. func ResetConfig(localPath string) cfg.Config {
  47. rootDir := os.Getenv("HOME") + "/.tendermint_test/" + localPath
  48. initTMRoot(rootDir)
  49. configFilePath := path.Join(rootDir, "config.toml")
  50. mapConfig, err := cfg.ReadMapConfigFromFile(configFilePath)
  51. if err != nil {
  52. Exit(Fmt("Could not read config: %v", err))
  53. }
  54. // Set defaults or panic
  55. if mapConfig.IsSet("chain_id") {
  56. Exit("Cannot set 'chain_id' via config.toml")
  57. }
  58. mapConfig.SetDefault("chain_id", "tendermint_test")
  59. mapConfig.SetDefault("genesis_file", rootDir+"/genesis.json")
  60. mapConfig.SetDefault("proxy_app", "dummy")
  61. mapConfig.SetDefault("tmsp", "socket")
  62. mapConfig.SetDefault("moniker", "anonymous")
  63. mapConfig.SetDefault("node_laddr", "tcp://0.0.0.0:36656")
  64. mapConfig.SetDefault("fast_sync", false)
  65. mapConfig.SetDefault("skip_upnp", true)
  66. mapConfig.SetDefault("addrbook_file", rootDir+"/addrbook.json")
  67. mapConfig.SetDefault("priv_validator_file", rootDir+"/priv_validator.json")
  68. mapConfig.SetDefault("db_backend", "memdb")
  69. mapConfig.SetDefault("db_dir", rootDir+"/data")
  70. mapConfig.SetDefault("log_level", "debug")
  71. mapConfig.SetDefault("rpc_laddr", "tcp://0.0.0.0:36657")
  72. mapConfig.SetDefault("prof_laddr", "")
  73. mapConfig.SetDefault("revision_file", rootDir+"/revision")
  74. mapConfig.SetDefault("cswal", rootDir+"/data/cswal")
  75. mapConfig.SetDefault("cswal_light", false)
  76. mapConfig.SetDefault("filter_peers", false)
  77. mapConfig.SetDefault("block_size", 10000)
  78. mapConfig.SetDefault("disable_data_hash", false)
  79. mapConfig.SetDefault("timeout_propose", 2000)
  80. mapConfig.SetDefault("timeout_propose_delta", 500)
  81. mapConfig.SetDefault("timeout_prevote", 1000)
  82. mapConfig.SetDefault("timeout_prevote_delta", 500)
  83. mapConfig.SetDefault("timeout_precommit", 1000)
  84. mapConfig.SetDefault("timeout_precommit_delta", 500)
  85. mapConfig.SetDefault("timeout_commit", 100)
  86. mapConfig.SetDefault("mempool_recheck", true)
  87. mapConfig.SetDefault("mempool_recheck_empty", true)
  88. mapConfig.SetDefault("mempool_broadcast", true)
  89. return mapConfig
  90. }
  91. var defaultConfigTmpl = `# This is a TOML config file.
  92. # For more information, see https://github.com/toml-lang/toml
  93. proxy_app = "dummy"
  94. moniker = "__MONIKER__"
  95. node_laddr = "tcp://0.0.0.0:36656"
  96. seeds = ""
  97. fast_sync = false
  98. db_backend = "memdb"
  99. log_level = "debug"
  100. rpc_laddr = "tcp://0.0.0.0:36657"
  101. `
  102. func defaultConfig(moniker string) (defaultConfig string) {
  103. defaultConfig = strings.Replace(defaultConfigTmpl, "__MONIKER__", moniker, -1)
  104. return
  105. }
  106. var defaultGenesis = `{
  107. "genesis_time": "0001-01-01T00:00:00.000Z",
  108. "chain_id": "tendermint_test",
  109. "validators": [
  110. {
  111. "pub_key": [
  112. 1,
  113. "3B3069C422E19688B45CBFAE7BB009FC0FA1B1EA86593519318B7214853803C8"
  114. ],
  115. "amount": 10,
  116. "name": ""
  117. }
  118. ],
  119. "app_hash": ""
  120. }`
  121. var defaultPrivValidator = `{
  122. "address": "D028C9981F7A87F3093672BF0D5B0E2A1B3ED456",
  123. "pub_key": [
  124. 1,
  125. "3B3069C422E19688B45CBFAE7BB009FC0FA1B1EA86593519318B7214853803C8"
  126. ],
  127. "priv_key": [
  128. 1,
  129. "27F82582AEFAE7AB151CFB01C48BB6C1A0DA78F9BDDA979A9F70A84D074EB07D3B3069C422E19688B45CBFAE7BB009FC0FA1B1EA86593519318B7214853803C8"
  130. ],
  131. "last_height": 0,
  132. "last_round": 0,
  133. "last_step": 0
  134. }`