-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: fix
generate_column
integration test case (#797)
Signed-off-by: dongmen <414110582@qq.com>
- Loading branch information
1 parent
fa5394f
commit 33cbfe9
Showing
12 changed files
with
265 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!-- | ||
Thank you for contributing to TiCDC! | ||
Please read MD's [CONTRIBUTING](https://github.com/pingcap/ticdc/blob/master/CONTRIBUTING.md) document **BEFORE** filing this PR. | ||
--> | ||
|
||
### What problem does this PR solve? | ||
<!-- | ||
Please create an issue first to describe the problem. | ||
There MUST be one line starting with "Issue Number: " and | ||
linking the relevant issues via the "close" or "ref". | ||
For more info, check https://pingcap.github.io/tidb-dev-guide/contribute-to-tidb/contribute-code.html#referring-to-an-issue. | ||
--> | ||
|
||
Issue Number: close #xxx | ||
|
||
### What is changed and how it works? | ||
|
||
### Check List <!--REMOVE the items that are not applicable--> | ||
|
||
#### Tests <!-- At least one of them must be included. --> | ||
|
||
- Unit test | ||
- Integration test | ||
- Manual test (add detailed scripts or steps below) | ||
- No code | ||
|
||
#### Questions <!-- Authors should answer these questions and reviewers should consider these questions. --> | ||
|
||
##### Will it cause performance regression or break compatibility? | ||
|
||
##### Do you need to update user documentation, design documentation or monitoring documentation? | ||
|
||
### Release note <!-- bugfixes or new features need a release note --> | ||
|
||
```release-note | ||
Please refer to [Release Notes Language Style Guide](https://pingcap.github.io/tidb-dev-guide/contribute-to-tidb/release-notes-style-guide.html) to write a quality release note. | ||
If you don't think this PR needs a release note then fill it with `None`. | ||
``` |
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
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,81 @@ | ||
# How to contribute | ||
|
||
This document outlines some of the conventions on development workflow, commit | ||
message formatting, contact points and other resources to make it easier to get | ||
your contribution accepted. | ||
|
||
## Get started | ||
|
||
- Fork the repository on GitHub. | ||
- Read the README.md for build instructions. | ||
- Play with the project, submit bugs, submit patches! | ||
|
||
## Build TiCDC | ||
|
||
Developing TiCDC requires: | ||
|
||
* [Go 1.23+](https://go.dev/doc/code) | ||
* An internet connection to download the dependencies | ||
|
||
Simply run `make cdc` to build the program. | ||
|
||
```sh | ||
make cdc | ||
``` | ||
|
||
### Run tests | ||
|
||
TODO | ||
|
||
### Update dependencies | ||
|
||
TiCDC uses [Go Modules](https://github.com/golang/go/wiki/Modules) to manage dependencies. To add or update a dependency: use the `go mod edit` command to change the dependency. | ||
|
||
## Contribution flow | ||
|
||
This is a rough outline of what a contributor's workflow looks like: | ||
|
||
- Create a topic branch from where you want to base your work. This is usually `master`. | ||
- Make commits of logical units and add test case if the change fixes a bug or adds new functionality. | ||
- Run tests and make sure all the tests are passed. | ||
- Make sure your commit messages are in the proper format (see below). | ||
- Push your changes to a topic branch in your fork of the repository. | ||
- Submit a pull request. | ||
- Your PR must receive LGTMs from two maintainers. | ||
|
||
Thanks for your contributions! | ||
|
||
### Code style | ||
|
||
The coding style suggested by the Golang community is used in TiCDC. See the [style doc](https://github.com/golang/go/wiki/CodeReviewComments) for details. | ||
|
||
Please follow this style to make TiCDC easy to review, maintain and develop. | ||
|
||
### Commit message format | ||
|
||
We follow a rough convention for commit messages that is designed to answer two | ||
questions: what changed and why. The subject line should feature the what and | ||
the body of the commit should describe the why. | ||
|
||
```shell | ||
maintainer: add comment for variable declaration | ||
|
||
Improve documentation. | ||
``` | ||
|
||
The format can be described more formally as follows: | ||
|
||
```shell | ||
<subsystem>: <what changed> | ||
<BLANK LINE> | ||
<why this change was made> | ||
<BLANK LINE> | ||
<footer>(optional) | ||
``` | ||
|
||
The first line is the subject and should be no longer than 70 characters, the second line is always blank, and other lines should be wrapped at 80 characters. This allows the message to be easier to read on GitHub as well as in various git tools. | ||
|
||
- If the change affects more than one subsystem, use a comma to separate them like ```maintainer,dispatcher:```. | ||
- If the change affects many subsystems, use ```*``` instead, like ```*:```. | ||
|
||
For the why part, if no specific reason for the change, you can use one of some generic reasons like "Improve documentation.", "Improve performance.", "Improve robustness.", "Improve test coverage." |
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,96 @@ | ||
package common | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/pingcap/tidb/pkg/meta/model" | ||
pmodel "github.com/pingcap/tidb/pkg/parser/model" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestColumnSchema_GetColumnList(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
columns []*model.ColumnInfo | ||
columnsFlag map[int64]*ColumnFlagType | ||
isUpdate bool | ||
wantCount int | ||
wantColumnList string | ||
}{ | ||
{ | ||
name: "normal columns without update", | ||
columns: []*model.ColumnInfo{ | ||
{Name: pmodel.CIStr{O: "id", L: "id"}, ID: 1}, | ||
{Name: pmodel.CIStr{O: "name", L: "name"}, ID: 2}, | ||
{Name: pmodel.CIStr{O: "age", L: "age"}, ID: 3}, | ||
}, | ||
columnsFlag: map[int64]*ColumnFlagType{ | ||
1: NewColumnFlagType(PrimaryKeyFlag), | ||
2: NewColumnFlagType(UniqueKeyFlag), | ||
3: NewColumnFlagType(NullableFlag), | ||
}, | ||
isUpdate: false, | ||
wantCount: 3, | ||
wantColumnList: "`id`,`name`,`age`", | ||
}, | ||
{ | ||
name: "normal columns with update", | ||
columns: []*model.ColumnInfo{ | ||
{Name: pmodel.CIStr{O: "id", L: "id"}, ID: 1}, | ||
{Name: pmodel.CIStr{O: "name", L: "name"}, ID: 2}, | ||
{Name: pmodel.CIStr{O: "age", L: "age"}, ID: 3}, | ||
}, | ||
columnsFlag: map[int64]*ColumnFlagType{ | ||
1: NewColumnFlagType(PrimaryKeyFlag), | ||
2: NewColumnFlagType(UniqueKeyFlag), | ||
3: NewColumnFlagType(NullableFlag), | ||
}, | ||
isUpdate: true, | ||
wantCount: 3, | ||
wantColumnList: "`id` = ?,`name` = ?,`age` = ?", | ||
}, | ||
{ | ||
name: "with generated columns", | ||
columns: []*model.ColumnInfo{ | ||
{Name: pmodel.CIStr{O: "id", L: "id"}, ID: 1}, | ||
{Name: pmodel.CIStr{O: "name", L: "name"}, ID: 2}, | ||
{Name: pmodel.CIStr{O: "full_name", L: "full_name"}, ID: 3}, // generated column | ||
}, | ||
columnsFlag: map[int64]*ColumnFlagType{ | ||
1: NewColumnFlagType(PrimaryKeyFlag), | ||
2: NewColumnFlagType(UniqueKeyFlag), | ||
3: NewColumnFlagType(GeneratedColumnFlag), | ||
}, | ||
isUpdate: false, | ||
wantCount: 2, | ||
wantColumnList: "`id`,`name`", | ||
}, | ||
{ | ||
name: "with nil column", | ||
columns: []*model.ColumnInfo{ | ||
{Name: pmodel.CIStr{O: "id", L: "id"}, ID: 1}, | ||
nil, | ||
{Name: pmodel.CIStr{O: "age", L: "age"}, ID: 3}, | ||
}, | ||
columnsFlag: map[int64]*ColumnFlagType{ | ||
1: NewColumnFlagType(PrimaryKeyFlag), | ||
3: NewColumnFlagType(NullableFlag), | ||
}, | ||
isUpdate: false, | ||
wantCount: 2, | ||
wantColumnList: "`id`,`age`", | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
s := &columnSchema{ | ||
Columns: tt.columns, | ||
ColumnsFlag: tt.columnsFlag, | ||
} | ||
gotCount, gotColumnList := s.getColumnList(tt.isUpdate) | ||
require.Equal(t, tt.wantCount, gotCount) | ||
require.Equal(t, tt.wantColumnList, gotColumnList) | ||
}) | ||
} | ||
} |
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
Oops, something went wrong.