support for writing envs out in dotenv format

This commit is contained in:
Alex Quick
2017-05-06 00:52:21 -04:00
parent c9360df4d1
commit 88e7c8bd35
2 changed files with 85 additions and 0 deletions

View File

@ -2,7 +2,9 @@ package godotenv
import (
"bytes"
"fmt"
"os"
"reflect"
"testing"
)
@ -326,3 +328,47 @@ func TestErrorParsing(t *testing.T) {
t.Errorf("Expected error, got %v", envMap)
}
}
func TestWrite(t *testing.T) {
writeAndCompare := func(env string, expected string) {
envMap, _ := ParseString(env)
actual, _ := WriteString(envMap)
if expected != actual {
t.Errorf("Expected '%v' (%v) to write as '%v', got '%v' instead.", env, envMap, expected, actual)
}
}
//just test some single lines to show the general idea
//TestRoundtrip makes most of the good assertions
//values are always double-quoted
writeAndCompare(`key=value`, `key="value"`)
//double-quotes are escaped
writeAndCompare(`key=va"lu"e`, `key="va\"lu\"e"`)
//but single quotes are left alone
writeAndCompare(`key=va'lu'e`, `key="va'lu'e"`)
// newlines and backslashes are escaped
writeAndCompare(`foo="ba\n\r\\r!"`, `foo="ba\n\r\\r!"`)
}
func TestRoundtrip(t *testing.T) {
fixtures := []string{"equals.env", "exported.env", "invalid1.env", "plain.env", "quoted.env"}
for _, fixture := range fixtures {
fixtureFilename := fmt.Sprintf("fixtures/%s", fixture)
env, err := readFile(fixtureFilename)
if err != nil {
continue
}
rep, err := WriteString(env)
if err != nil {
continue
}
roundtripped, err := ParseString(rep)
if err != nil {
continue
}
if !reflect.DeepEqual(env, roundtripped) {
t.Errorf("Expected '%s' to roundtrip as '%v', got '%v' instead", fixtureFilename, env, roundtripped)
}
}
}