1/* Copyright (c) 2020, Google Inc. 2 * 3 * Permission to use, copy, modify, and/or distribute this software for any 4 * purpose with or without fee is hereby granted, provided that the above 5 * copyright notice and this permission notice appear in all copies. 6 * 7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 15package testconfig 16 17import ( 18 "encoding/json" 19 "os" 20) 21 22type Test struct { 23 Cmd []string `json:"cmd"` 24 Env []string `json:"env"` 25 SkipSDE bool `json:"skip_sde"` 26 Shard bool `json:"shard"` 27} 28 29func ParseTestConfig(filename string) ([]Test, error) { 30 in, err := os.Open(filename) 31 if err != nil { 32 return nil, err 33 } 34 defer in.Close() 35 36 decoder := json.NewDecoder(in) 37 var result []Test 38 if err := decoder.Decode(&result); err != nil { 39 return nil, err 40 } 41 return result, nil 42} 43