-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wrangler e2e tests #666
wrangler e2e tests #666
Conversation
fc300d3
to
747a1f0
Compare
c11f146
to
a8a2cdf
Compare
@Before(order = 1, value = "@BQ_SOURCE_XML_TEST") | ||
public static void createTempSourceBQTableXml() throws IOException, InterruptedException { | ||
createSourceBQTableWithQueries(PluginPropertyUtils.pluginProp("CreateBQDataQueryFileXml"), | ||
PluginPropertyUtils.pluginProp("InsertBQDataQueryFileXml")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indentation is incorrect.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done.
0edd9ff
to
5a20db2
Compare
8222c1a
to
dcd8cb2
Compare
e28a087
to
e4fad20
Compare
ae13467
to
ee7c885
Compare
pom.xml
Outdated
@@ -83,7 +83,7 @@ | |||
<aws.sdk.version>1.11.133</aws.sdk.version> | |||
<bigquery.connector.hadoop2.version>0.10.2-hadoop2</bigquery.connector.hadoop2.version> | |||
<bouncycastle.version>1.56</bouncycastle.version> | |||
<cdap.version>6.10.0-SNAPSHOT</cdap.version> | |||
<cdap.version>6.11.0-SNAPSHOT</cdap.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert if not required.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually we can change it to 6.10.0 instead since it is released now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed to 6.10
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use range of version in plugin versions and cdap data pipeline artifact version in the pipeline jsons otherwise we will need to always keep modifying the pipeline.
ee7c885
to
20bfc10
Compare
20bfc10
to
46af09b
Compare
It does not looks like this comment is addressed, the plugin & cdap-data-pipeline versions are still hardcoded. |
46af09b
to
b6a4ed0
Compare
@@ -3,7 +3,7 @@ | |||
"description": "Data Pipeline Application", | |||
"artifact": { | |||
"name": "cdap-data-pipeline", | |||
"version": "6.10.0-SNAPSHOT", | |||
"version": "[4.0.0, 5.0.0]", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be [6.0.0, 7.0.0).
The comment applies to the whole PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done.
b6a4ed0
to
8ccdc1b
Compare
@@ -24,8 +24,6 @@ Feature: datatype parsers | |||
Then Replace input plugin property: "project" with value: "projectId" | |||
Then Replace input plugin property: "dataset" with value: "dataset" | |||
Then Replace input plugin property: "table" with value: "bqSourceTable" | |||
Then Click on the Get Schema button |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As the pipelines are exported.In almost all the PR's the issue is when we try to get schema then randomly in most of the fields it is going null when we click on get schema and validate button. And it also changes the schema . So just to solve that issue we removed that part from here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you mean by this?
when we try to get schema then randomly in most of the fields it is going null when we click on get schema and validate button. And it also changes the schema
Can you please elaborate with the help of screenshots?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added the schema and validation step.
@@ -3,7 +3,7 @@ | |||
"description": "Data Pipeline Application", | |||
"artifact": { | |||
"name": "cdap-data-pipeline", | |||
"version": "6.10.0-SNAPSHOT", | |||
"version": "[6.0.0, 7.0.0]", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: [6.0.0, 7.0.0)
this comment applies to whole PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed in all the json pipelines.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment is not addressed still, the upper bound should not be included [6.0.0, 7.0.0)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed.
8ccdc1b
to
616cad6
Compare
4e22f8e
to
ccd261f
Compare
ccd261f
to
c2550e3
Compare
Wrangler e2e tests for excel ,xmltojson and json parsers.