mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
52 lines
937 B
Go
52 lines
937 B
Go
|
package builder
|
||
|
|
||
|
import (
|
||
|
"bufio"
|
||
|
"os"
|
||
|
"strings"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestShellParser(t *testing.T) {
|
||
|
file, err := os.Open("words")
|
||
|
if err != nil {
|
||
|
t.Fatalf("Can't open 'words': %s", err)
|
||
|
}
|
||
|
defer file.Close()
|
||
|
|
||
|
scanner := bufio.NewScanner(file)
|
||
|
envs := []string{"PWD=/home", "SHELL=bash"}
|
||
|
for scanner.Scan() {
|
||
|
line := scanner.Text()
|
||
|
|
||
|
// Trim comments and blank lines
|
||
|
i := strings.Index(line, "#")
|
||
|
if i >= 0 {
|
||
|
line = line[:i]
|
||
|
}
|
||
|
line = strings.TrimSpace(line)
|
||
|
|
||
|
if line == "" {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
words := strings.Split(line, "|")
|
||
|
if len(words) != 2 {
|
||
|
t.Fatalf("Error in 'words' - should be 2 words:%q", words)
|
||
|
}
|
||
|
|
||
|
words[0] = strings.TrimSpace(words[0])
|
||
|
words[1] = strings.TrimSpace(words[1])
|
||
|
|
||
|
newWord, err := ProcessWord(words[0], envs)
|
||
|
|
||
|
if err != nil {
|
||
|
newWord = "error"
|
||
|
}
|
||
|
|
||
|
if newWord != words[1] {
|
||
|
t.Fatalf("Error. Src: %s Calc: %s Expected: %s", words[0], newWord, words[1])
|
||
|
}
|
||
|
}
|
||
|
}
|