File: ctx_test.go

package info (click to toggle)
golang-github-johanneskaufmann-html-to-markdown 2.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,080 kB
  • sloc: makefile: 3
file content (54 lines) | stat: -rw-r--r-- 1,017 bytes parent folder | download
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
package converter

import (
	"context"
	"testing"
)

func TestState(t *testing.T) {
	state := newGlobalState()

	ctx := context.Background()
	ctx = state.provideGlobalState(ctx)

	val := GetState[int](ctx, "key")
	if val != 0 {
		t.Errorf("expected different value but got %d", val)
	}

	SetState[int](ctx, "key", 10)

	UpdateState[int](ctx, "key", func(i int) int {
		return i + 5
	})

	val = GetState[int](ctx, "key")
	if val != 15 {
		t.Errorf("expected different value but got %d", val)
	}
}

func TestContext(t *testing.T) {
	conv := NewConverter()
	bgCtx := context.Background()

	ctx := newConverterContext(bgCtx, conv)

	ctx1 := ctx.WithValue("keyA", "a1")
	if ctx1.Value("keyA") != "a1" {
		t.Error("got different value")
	}

	ctx2 := ctx.WithValue("keyA", "a2")
	if ctx2.Value("keyA") != "a2" {
		t.Error("got different value")
	}

	ctx3 := ctx.WithValue("keyB", "b1")
	if ctx3.Value("keyA") != nil {
		t.Error("expected nil value")
	}
	if ctx3.Value("keyB") != "b1" {
		t.Error("got different value")
	}
}