Skip to content
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

Initial commit of Webttle code covering Execution flow and Preview Rows #9212

Open
wants to merge 3 commits into
base: BACKLOG-39660
Choose a base branch
from

Conversation

PawanPonugupati
Copy link
Contributor

This is the first commit for Kettle engine related changes related to "Webttle". This contains:

  1. Execution Flow
  2. Preview Rows Post Execution implementation

@PawanPonugupati PawanPonugupati requested a review from a team as a code owner March 5, 2024 08:31
@PawanPonugupati PawanPonugupati removed the request for review from a team March 5, 2024 10:20
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don't change anything that is not our code, even indentations

import java.io.IOException;
import java.io.PrintWriter;
import java.util.List;

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add class java doc here

import java.io.PrintWriter;
import java.util.List;


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add class level javadoc here

@@ -184,7 +185,7 @@ public void doGetTransformationNotFoundTest() throws Exception {
HttpServletRequest mockHttpServletRequest = mock( HttpServletRequest.class );
HttpServletResponse mockHttpServletResponse = mock( HttpServletResponse.class );
Trans trans = initMocksForTransExecution( mockHttpServletRequest, mockHttpServletResponse );
doThrow( new KettleException( "Unable to find transformation" ) ).when( executeTransServlet ).executeTrans( trans );
doThrow( new KettleException( "Unable to find transformation" ) ).when( executeTransServlet ).executeTrans( trans, new HashMap<>());
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think better to override this method for our approach and handle it java rather than doing it in test class

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants