solidity_test.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. // Copyright 2015 The go-ethereum Authors
  2. // This file is part of the go-ethereum library.
  3. //
  4. // The go-ethereum library is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // The go-ethereum library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Lesser General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Lesser General Public License
  15. // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
  16. package compiler
  17. import (
  18. "encoding/json"
  19. "io/ioutil"
  20. "os"
  21. "os/exec"
  22. "path"
  23. "testing"
  24. "github.com/ethereum/go-ethereum/common"
  25. )
  26. const (
  27. testSource = `
  28. contract test {
  29. /// @notice Will multiply ` + "`a`" + ` by 7.
  30. function multiply(uint a) returns(uint d) {
  31. return a * 7;
  32. }
  33. }
  34. `
  35. testInfo = `{"source":"\ncontract test {\n /// @notice Will multiply ` + "`a`" + ` by 7.\n function multiply(uint a) returns(uint d) {\n return a * 7;\n }\n}\n","language":"Solidity","languageVersion":"0.1.1","compilerVersion":"0.1.1","compilerOptions":"--binary file --json-abi file --add-std 1","abiDefinition":[{"constant":false,"inputs":[{"name":"a","type":"uint256"}],"name":"multiply","outputs":[{"name":"d","type":"uint256"}],"type":"function"}],"userDoc":{"methods":{"multiply(uint256)":{"notice":"Will multiply ` + "`a`" + ` by 7."}}},"developerDoc":{"methods":{}}}`
  36. )
  37. func skipWithoutSolc(t *testing.T) {
  38. if _, err := exec.LookPath("solc"); err != nil {
  39. t.Skip(err)
  40. }
  41. }
  42. func TestCompiler(t *testing.T) {
  43. skipWithoutSolc(t)
  44. contracts, err := CompileSolidityString("", testSource)
  45. if err != nil {
  46. t.Fatalf("error compiling source. result %v: %v", contracts, err)
  47. }
  48. if len(contracts) != 1 {
  49. t.Errorf("one contract expected, got %d", len(contracts))
  50. }
  51. c, ok := contracts["test"]
  52. if !ok {
  53. t.Fatal("info for contract 'test' not present in result")
  54. }
  55. if c.Code == "" {
  56. t.Error("empty code")
  57. }
  58. if c.Info.Source != testSource {
  59. t.Error("wrong source")
  60. }
  61. if c.Info.CompilerVersion == "" {
  62. t.Error("empty version")
  63. }
  64. }
  65. func TestCompileError(t *testing.T) {
  66. skipWithoutSolc(t)
  67. contracts, err := CompileSolidityString("", testSource[4:])
  68. if err == nil {
  69. t.Errorf("error expected compiling source. got none. result %v", contracts)
  70. }
  71. t.Logf("error: %v", err)
  72. }
  73. func TestSaveInfo(t *testing.T) {
  74. var cinfo ContractInfo
  75. err := json.Unmarshal([]byte(testInfo), &cinfo)
  76. if err != nil {
  77. t.Errorf("%v", err)
  78. }
  79. filename := path.Join(os.TempDir(), "solctest.info.json")
  80. os.Remove(filename)
  81. cinfohash, err := SaveInfo(&cinfo, filename)
  82. if err != nil {
  83. t.Errorf("error extracting info: %v", err)
  84. }
  85. got, err := ioutil.ReadFile(filename)
  86. if err != nil {
  87. t.Errorf("error reading '%v': %v", filename, err)
  88. }
  89. if string(got) != testInfo {
  90. t.Errorf("incorrect info.json extracted, expected:\n%s\ngot\n%s", testInfo, string(got))
  91. }
  92. wantHash := common.HexToHash("0x22450a77f0c3ff7a395948d07bc1456881226a1b6325f4189cb5f1254a824080")
  93. if cinfohash != wantHash {
  94. t.Errorf("content hash for info is incorrect. expected %v, got %v", wantHash.Hex(), cinfohash.Hex())
  95. }
  96. }