solidity_test.go 3.34 KB
Newer Older
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 6 7 8
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
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 13 14
// GNU Lesser General Public License for more details.
//
// 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

17 18 19 20 21 22
package compiler

import (
	"encoding/json"
	"io/ioutil"
	"os"
23
	"os/exec"
24
	"path"
25 26 27 28 29
	"testing"

	"github.com/ethereum/go-ethereum/common"
)

30
const (
31
	testSource = `
32 33 34 35 36 37 38
contract test {
   /// @notice Will multiply ` + "`a`" + ` by 7.
   function multiply(uint a) returns(uint d) {
       return a * 7;
   }
}
`
39
	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":{}}}`
40 41
)

42 43
func skipWithoutSolc(t *testing.T) {
	if _, err := exec.LookPath("solc"); err != nil {
44 45 46
		t.Skip(err)
	}
}
zelig's avatar
zelig committed
47

48
func TestCompiler(t *testing.T) {
49 50
	skipWithoutSolc(t)

51 52 53 54
	contracts, err := CompileSolidityString("", testSource)
	if err != nil {
		t.Fatalf("error compiling source. result %v: %v", contracts, err)
	}
55
	if len(contracts) != 1 {
Felix Lange's avatar
Felix Lange committed
56
		t.Errorf("one contract expected, got %d", len(contracts))
57
	}
58 59 60 61
	c, ok := contracts["test"]
	if !ok {
		t.Fatal("info for contract 'test' not present in result")
	}
62 63
	if c.Code == "" {
		t.Error("empty code")
64 65 66 67
	}
	if c.Info.Source != testSource {
		t.Error("wrong source")
	}
68 69
	if c.Info.CompilerVersion == "" {
		t.Error("empty version")
zelig's avatar
zelig committed
70
	}
71 72 73
}

func TestCompileError(t *testing.T) {
74 75
	skipWithoutSolc(t)

76
	contracts, err := CompileSolidityString("", testSource[4:])
77
	if err == nil {
78
		t.Errorf("error expected compiling source. got none. result %v", contracts)
79
	}
80
	t.Logf("error: %v", err)
81 82
}

83
func TestSaveInfo(t *testing.T) {
84
	var cinfo ContractInfo
85
	err := json.Unmarshal([]byte(testInfo), &cinfo)
86 87 88
	if err != nil {
		t.Errorf("%v", err)
	}
89
	filename := path.Join(os.TempDir(), "solctest.info.json")
90
	os.Remove(filename)
91
	cinfohash, err := SaveInfo(&cinfo, filename)
92
	if err != nil {
zelig's avatar
zelig committed
93
		t.Errorf("error extracting info: %v", err)
94 95 96
	}
	got, err := ioutil.ReadFile(filename)
	if err != nil {
zelig's avatar
zelig committed
97
		t.Errorf("error reading '%v': %v", filename, err)
98
	}
99 100
	if string(got) != testInfo {
		t.Errorf("incorrect info.json extracted, expected:\n%s\ngot\n%s", testInfo, string(got))
101
	}
102
	wantHash := common.HexToHash("0x22450a77f0c3ff7a395948d07bc1456881226a1b6325f4189cb5f1254a824080")
103 104
	if cinfohash != wantHash {
		t.Errorf("content hash for info is incorrect. expected %v, got %v", wantHash.Hex(), cinfohash.Hex())
105
	}
106
}