test_utils.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 common
  17. import (
  18. "encoding/json"
  19. "fmt"
  20. "io/ioutil"
  21. )
  22. // LoadJSON reads the given file and unmarshals its content.
  23. func LoadJSON(file string, val interface{}) error {
  24. content, err := ioutil.ReadFile(file)
  25. if err != nil {
  26. return err
  27. }
  28. if err := json.Unmarshal(content, val); err != nil {
  29. if syntaxerr, ok := err.(*json.SyntaxError); ok {
  30. line := findLine(content, syntaxerr.Offset)
  31. return fmt.Errorf("JSON syntax error at %v:%v: %v", file, line, err)
  32. }
  33. return fmt.Errorf("JSON unmarshal error in %v: %v", file, err)
  34. }
  35. return nil
  36. }
  37. // findLine returns the line number for the given offset into data.
  38. func findLine(data []byte, offset int64) (line int) {
  39. line = 1
  40. for i, r := range string(data) {
  41. if int64(i) >= offset {
  42. return
  43. }
  44. if r == '\n' {
  45. line++
  46. }
  47. }
  48. return
  49. }