aboutsummaryrefslogtreecommitdiffhomepage
path: root/template/dict_test.go
blob: ef4b17c1e513f7b71a06fa300be4627e23a64c17 (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
// 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 template // import "miniflux.app/template"

import (
	"testing"
)

func TestDict(t *testing.T) {
	d, err := dict("k1", "v1", "k2", "v2")
	if err != nil {
		t.Fatalf(`The dict should be valid: %v`, err)
	}

	if value, found := d["k1"]; found {
		if value != "v1" {
			t.Fatalf(`Incorrect value for k1: %q`, value)
		}
	}

	if value, found := d["k2"]; found {
		if value != "v2" {
			t.Fatalf(`Incorrect value for k2: %q`, value)
		}
	}
}

func TestDictWithIncorrectNumberOfPairs(t *testing.T) {
	_, err := dict("k1", "v1", "k2")
	if err == nil {
		t.Fatalf(`The dict should not be valid because the number of keys/values pairs are incorrect`)
	}
}

func TestDictWithInvalidKey(t *testing.T) {
	_, err := dict(1, "v1")
	if err == nil {
		t.Fatalf(`The dict should not be valid because the key is not a string`)
	}
}