-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b9455e
commit 1626ade
Showing
3 changed files
with
242 additions
and
45 deletions.
There are no files selected for viewing
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
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
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,68 @@ | ||
/* | ||
Copyright 2020 YANDEX LLC | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package hasql | ||
|
||
import ( | ||
"context" | ||
"database/sql" | ||
"io" | ||
"slices" | ||
) | ||
|
||
var _ NodeDiscoverer[*mockQuerier] = (*mockNodeDiscoverer[*mockQuerier])(nil) | ||
|
||
// mockNodeDiscoverer returns stored results to tests | ||
type mockNodeDiscoverer[T Querier] struct { | ||
nodes []*Node[T] | ||
err error | ||
} | ||
|
||
func (e mockNodeDiscoverer[T]) DiscoverNodes(_ context.Context) ([]*Node[T], error) { | ||
return slices.Clone(e.nodes), e.err | ||
} | ||
|
||
var _ Querier = (*mockQuerier)(nil) | ||
var _ io.Closer = (*mockQuerier)(nil) | ||
|
||
// mockQuerier returns fake SQL results to tests | ||
type mockQuerier struct { | ||
name string | ||
queryFn func(ctx context.Context, query string, args ...any) (*sql.Rows, error) | ||
queryRowFn func(ctx context.Context, query string, args ...any) *sql.Row | ||
closeFn func() error | ||
} | ||
|
||
func (m *mockQuerier) QueryContext(ctx context.Context, query string, args ...any) (*sql.Rows, error) { | ||
if m.queryFn != nil { | ||
return m.queryFn(ctx, query, args...) | ||
} | ||
return nil, nil | ||
} | ||
|
||
func (m *mockQuerier) QueryRowContext(ctx context.Context, query string, args ...any) *sql.Row { | ||
if m.queryRowFn != nil { | ||
return m.queryRowFn(ctx, query, args...) | ||
} | ||
return nil | ||
} | ||
|
||
func (m *mockQuerier) Close() error { | ||
if m.closeFn != nil { | ||
return m.closeFn() | ||
} | ||
return nil | ||
} |