summaryrefslogtreecommitdiffstats
path: root/vendor/golang.org/x/text/message/pipeline/testdata/test1/catalog_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/golang.org/x/text/message/pipeline/testdata/test1/catalog_test.go')
-rw-r--r--vendor/golang.org/x/text/message/pipeline/testdata/test1/catalog_test.go49
1 files changed, 49 insertions, 0 deletions
diff --git a/vendor/golang.org/x/text/message/pipeline/testdata/test1/catalog_test.go b/vendor/golang.org/x/text/message/pipeline/testdata/test1/catalog_test.go
new file mode 100644
index 000000000..eeb7c25f4
--- /dev/null
+++ b/vendor/golang.org/x/text/message/pipeline/testdata/test1/catalog_test.go
@@ -0,0 +1,49 @@
+// Copyright 2017 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package main
+
+import (
+ "path"
+ "testing"
+
+ "golang.org/x/text/message"
+)
+
+func TestCatalog(t *testing.T) {
+ args := func(a ...interface{}) []interface{} { return a }
+ testCases := []struct {
+ lang string
+ key string
+ args []interface{}
+ want string
+ }{{
+ lang: "en",
+ key: "Hello world!\n",
+ want: "Hello world!\n",
+ }, {
+ lang: "de",
+ key: "Hello world!\n",
+ want: "Hallo Welt!\n",
+ }, {
+ lang: "en",
+ key: "%d more files remaining!",
+ args: args(1),
+ want: "One file remaining!",
+ }, {
+ lang: "en-u-nu-fullwide",
+ key: "%d more files remaining!",
+ args: args(5),
+ want: "There are 5 more files remaining!",
+ }}
+ for _, tc := range testCases {
+ t.Run(path.Join(tc.lang, tc.key), func(t *testing.T) {
+ p := message.NewPrinter(message.MatchLanguage(tc.lang))
+ got := p.Sprintf(tc.key, tc.args...)
+ if got != tc.want {
+ t.Errorf("got %q; want %q", got, tc.want)
+ }
+ })
+ }
+}