-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(context): refactor Context (#144)
* refactor(bootstrap): refactor Context Signed-off-by: Flc゛ <four_leaf_clover@foxmail.com> * refactor(bootstrap): refactor Context Signed-off-by: Flc゛ <four_leaf_clover@foxmail.com> * refactor(context): refactor Context Signed-off-by: Flc゛ <four_leaf_clover@foxmail.com> --------- Signed-off-by: Flc゛ <four_leaf_clover@foxmail.com>
- Loading branch information
Showing
5 changed files
with
71 additions
and
109 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package context | ||
|
||
import ( | ||
"context" | ||
) | ||
|
||
type Provider func(ctx context.Context) (context.Context, error) | ||
|
||
func Chain(ctx context.Context, providers ...Provider) (context.Context, error) { | ||
var err error | ||
for _, provider := range providers { | ||
if provider != nil { | ||
if ctx, err = provider(ctx); err != nil { | ||
return ctx, err | ||
} | ||
} | ||
} | ||
return ctx, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
package context | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestContext(t *testing.T) { | ||
type ( | ||
mockProviderStruct1 struct{} | ||
mockProviderStruct2 struct{} | ||
mockProviderStruct3 struct{} | ||
) | ||
|
||
var ( | ||
mockProvider1 = func(ctx context.Context) (context.Context, error) { | ||
return context.WithValue(ctx, mockProviderStruct1{}, "mockProvider1"), nil | ||
} | ||
|
||
mockProvider2 = func(ctx context.Context) (context.Context, error) { | ||
return context.WithValue(ctx, mockProviderStruct2{}, "mockProvider2"), nil | ||
} | ||
|
||
mockProvider3 = func(ctx context.Context) (context.Context, error) { | ||
return ctx, errors.New("mockProvider3") | ||
} | ||
) | ||
|
||
ctx1, err1 := Chain( | ||
context.Background(), | ||
mockProvider1, mockProvider2, | ||
) | ||
assert.NoError(t, err1) | ||
assert.Equal(t, "mockProvider1", ctx1.Value(mockProviderStruct1{})) | ||
assert.Equal(t, "mockProvider2", ctx1.Value(mockProviderStruct2{})) | ||
|
||
ctx2, err2 := Chain( | ||
context.Background(), | ||
mockProvider1, mockProvider3, | ||
) | ||
assert.Error(t, err2) | ||
assert.NotNil(t, ctx2) | ||
assert.Equal(t, "mockProvider1", ctx2.Value(mockProviderStruct1{})) | ||
assert.Nil(t, ctx2.Value(mockProviderStruct3{})) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters