aboutsummaryrefslogtreecommitdiffhomepage
path: root/locale/plural_test.go
blob: e7694bd41fde13e0de12ec2326bed0cca91eefd8 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.

package locale // import "miniflux.app/locale"

import "testing"

func TestPluralRules(t *testing.T) {
	scenarios := map[string]map[int]int{
		"default": map[int]int{
			1: 0,
			2: 1,
			5: 1,
		},
		"ar_AR": map[int]int{
			0:   0,
			1:   1,
			2:   2,
			5:   3,
			11:  4,
			200: 5,
		},
		"cs_CZ": map[int]int{
			1: 0,
			2: 1,
			5: 2,
		},
		"pl_PL": map[int]int{
			1: 0,
			2: 1,
			5: 2,
		},
		"pt_BR": map[int]int{
			1: 0,
			2: 1,
			5: 1,
		},
		"ru_RU": map[int]int{
			1: 0,
			2: 1,
			5: 2,
		},
		"sr_RS": map[int]int{
			1: 0,
			2: 1,
			5: 2,
		},
		"zh_CN": map[int]int{
			1: 0,
			5: 0,
		},
	}

	for rule, values := range scenarios {
		for input, expected := range values {
			result := pluralForms[rule](input)
			if result != expected {
				t.Errorf(`Unexpected result for %q rule, got %d instead of %d for %d as input`, rule, result, expected, input)
			}
		}
	}
}