-
Notifications
You must be signed in to change notification settings - Fork 2
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
Feature/22-switch-to-jdbc-driver #23
Conversation
-DDisableVerifyConnectorPluginSignature is not required when using -DConnectPluginsPath
TIME not supported by Exasol
Remove trimming capabilities that hide issue with trailing spaces in TO_CHAR()
This is now configured in the ini file
variables when running tests from the IDE.
user id 'xxx' is too big ( > 2097151 ) when using commons-compress 1.21 with large user ID testcontainers/testcontainers-java#4384
See tableau/connector-plugin-sdk#871 for details.
tableau-server-GUI-tests/src/test/java/com/exasol/tableau/JdbcConnectorIT.java
Outdated
Show resolved
Hide resolved
tableau-server-GUI-tests/src/test/java/com/exasol/tableau/JdbcConnectorIT.java
Outdated
Show resolved
Hide resolved
@@ -180,7 +193,7 @@ public void openSchema(final String schemaName) { | |||
final WebElement button = this.getElement("button", "data-tb-test-id", "dataTab-schema-selector-Dropdown", 5); | |||
this.explicitWait(3); | |||
button.click(); | |||
final List<WebElement> schemas = this.getElements("span", "class", "frvoegc"); | |||
final List<WebElement> schemas = this.getElements("span", "class", "ftmd0dp"); |
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.
I think we should find a more stable way to reach this element, it will be different in each version. Does it have some other identifier?
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.
I didn't find a better solution in short time. I created issue #28 to refactor this.
tableau-server-GUI-tests/src/test/java/com/exasol/tableau/TableauServerSetUp.java
Outdated
Show resolved
Hide resolved
@@ -0,0 +1,4579 @@ | |||
<?xml version='1.0' encoding='utf-8' ?> |
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.
Do we need this file here? This is generated with TDVT tests, right? Maybe remove the file
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 workbook is used for viewing the TDVT test results from the csv file. It makes viewing the results much easier.
@@ -0,0 +1,775 @@ | |||
<?xml version='1.0' encoding='utf-8' ?> |
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.
Is this file needed?
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.
Yes. The .tds files define the DB connection (host, port, user) and schema used by the TDVT tests.
@@ -0,0 +1,432 @@ | |||
<?xml version='1.0' encoding='utf-8' ?> | |||
|
|||
<!-- build 20213.21.0917.1006 --> |
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.
And this?
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.
Same as above. Required by TDVT tests.
@@ -0,0 +1,1093 @@ | |||
Test Category Test Path Categorized Test Name Categorized Function Categorized Priority |
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.
Do we need this? We didn't have one for odbc
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 is required as input by the TDVT Results.twb
workbook to show the test result report.
@@ -0,0 +1,4579 @@ | |||
<?xml version='1.0' encoding='utf-8' ?> | |||
|
|||
<!-- build 20213.21.0917.1006 --> |
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.
Can we remove it?
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.
Same as before. I find it useful for viewing the test result report.
Co-authored-by: Anastasiia Sergienko <[email protected]>
…/exasol/tableau-connector into feature/22-switch-to-jdbc-driver
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.
Approved!
Closes #22