summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/pseudomuto/protokit/context_test.go
blob: 1bd3347a7b884c65cd2f3dd4d92f8d4536b23e74 (plain) (blame)
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
64
65
66
67
68
69
70
package protokit_test

import (
	"github.com/stretchr/testify/suite"

	"context"
	"testing"

	"github.com/pseudomuto/protokit"
)

type ContextTest struct {
	suite.Suite
}

func TestContext(t *testing.T) {
	suite.Run(t, new(ContextTest))
}

func (assert *ContextTest) TestContextWithFileDescriptor() {
	ctx := context.Background()

	val, found := protokit.FileDescriptorFromContext(ctx)
	assert.Nil(val)
	assert.False(found)

	ctx = protokit.ContextWithFileDescriptor(ctx, new(protokit.FileDescriptor))
	val, found = protokit.FileDescriptorFromContext(ctx)
	assert.NotNil(val)
	assert.True(found)
}

func (assert *ContextTest) TestContextWithEnumDescriptor() {
	ctx := context.Background()

	val, found := protokit.EnumDescriptorFromContext(ctx)
	assert.Nil(val)
	assert.False(found)

	ctx = protokit.ContextWithEnumDescriptor(ctx, new(protokit.EnumDescriptor))
	val, found = protokit.EnumDescriptorFromContext(ctx)
	assert.NotNil(val)
	assert.True(found)
}

func (assert *ContextTest) TestContextWithDescriptor() {
	ctx := context.Background()

	val, found := protokit.DescriptorFromContext(ctx)
	assert.Nil(val)
	assert.False(found)

	ctx = protokit.ContextWithDescriptor(ctx, new(protokit.Descriptor))
	val, found = protokit.DescriptorFromContext(ctx)
	assert.NotNil(val)
	assert.True(found)
}

func (assert *ContextTest) TestContextWithServiceDescriptor() {
	ctx := context.Background()

	val, found := protokit.ServiceDescriptorFromContext(ctx)
	assert.Empty(val)
	assert.False(found)

	ctx = protokit.ContextWithServiceDescriptor(ctx, new(protokit.ServiceDescriptor))
	val, found = protokit.ServiceDescriptorFromContext(ctx)
	assert.NotNil(val)
	assert.True(found)
}