-
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.
add the ability to read from multiple Kafka topics (#131)
* add the ability to read from multiple kafka topics * fix test * add multiple topic test * rename "topic" to "topics" * add "topic" param as (soon to be deprecated), with validations * generate prams * address reviews * Update README.md Co-authored-by: Lovro Mažgon <[email protected]> * address reviews * fix test --------- Co-authored-by: Lovro Mažgon <[email protected]>
- Loading branch information
1 parent
fb070a6
commit a545a62
Showing
13 changed files
with
221 additions
and
53 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
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,77 @@ | ||
// Copyright © 2024 Meroxa, Inc. | ||
// | ||
// 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 source | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/matryer/is" | ||
) | ||
|
||
func TestConfig_ValidateTopics(t *testing.T) { | ||
// Note that we are testing custom validations. Required fields and simple | ||
// validations are already executed by the SDK via parameter specifications. | ||
testCases := []struct { | ||
name string | ||
cfg Config | ||
wantErr string | ||
}{{ | ||
name: `one of "topic" and "topics" should be provided.`, | ||
cfg: Config{ | ||
Topics: []string{}, | ||
Topic: "", | ||
}, | ||
wantErr: `required parameter missing: "topics"`, | ||
}, { | ||
name: "invalid, only provide one.", | ||
cfg: Config{ | ||
Topics: []string{"topic2"}, | ||
Topic: "topic1", | ||
}, | ||
wantErr: `can't provide both "topic" and "topics" parameters, "topic" is deprecated and will be removed, use the "topics" parameter instead`, | ||
}, { | ||
name: "valid with warning, will be deprecated soon", | ||
cfg: Config{ | ||
Topics: []string{}, | ||
Topic: "topic1", | ||
}, | ||
wantErr: "", | ||
}, { | ||
name: "valid", | ||
cfg: Config{ | ||
Topics: []string{"topic1"}, | ||
}, | ||
wantErr: "", | ||
}, | ||
} | ||
|
||
for _, tc := range testCases { | ||
t.Run(tc.name, func(t *testing.T) { | ||
is := is.New(t) | ||
err := tc.cfg.Validate(context.Background()) | ||
fmt.Println(err) | ||
if tc.wantErr != "" { | ||
is.True(err != nil) | ||
is.True(strings.Contains(err.Error(), tc.wantErr)) | ||
} else { | ||
is.NoErr(err) | ||
is.Equal(tc.cfg.Topics, []string{"topic1"}) | ||
} | ||
}) | ||
} | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.