summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nicksnyder/go-i18n/goi18n/merge_command_flat_test.go
blob: caa892d293b82310a2c9d076049da0cbf0dac956 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package main

import "testing"

func TestMergeExecuteFlat(t *testing.T) {
	files := []string{
		"testdata/input/flat/en-us.one.yaml",
		"testdata/input/flat/en-us.two.json",
		"testdata/input/flat/fr-fr.json",
		"testdata/input/flat/ar-ar.one.toml",
		"testdata/input/flat/ar-ar.two.json",
	}
	testFlatMergeExecute(t, files)
}

func testFlatMergeExecute(t *testing.T, files []string) {
	resetDir(t, "testdata/output/flat")

	mc := &mergeCommand{
		translationFiles: files,
		sourceLanguage:   "en-us",
		outdir:           "testdata/output/flat",
		format:           "json",
		flat:             true,
	}
	if err := mc.execute(); err != nil {
		t.Fatal(err)
	}

	expectEqualFiles(t, "testdata/output/flat/en-us.all.json", "testdata/expected/flat/en-us.all.json")
	expectEqualFiles(t, "testdata/output/flat/ar-ar.all.json", "testdata/expected/flat/ar-ar.all.json")
	expectEqualFiles(t, "testdata/output/flat/fr-fr.all.json", "testdata/expected/flat/fr-fr.all.json")
	expectEqualFiles(t, "testdata/output/flat/en-us.untranslated.json", "testdata/expected/flat/en-us.untranslated.json")
	expectEqualFiles(t, "testdata/output/flat/ar-ar.untranslated.json", "testdata/expected/flat/ar-ar.untranslated.json")
	expectEqualFiles(t, "testdata/output/flat/fr-fr.untranslated.json", "testdata/expected/flat/fr-fr.untranslated.json")
}