Skip Headers
Oracle® Fusion Middleware Fusion Developer's Guide for Oracle Application Development Framework
11g Release 1 (11.1.1)
B31974-03
  Go To Table Of Contents
Contents
Go To Index
Index

Previous
Previous
 
Next
Next
 

30 Testing and Debugging ADF Components

This chapter describes the process of debugging your user interface project. It describes several JDeveloper tools that can be used to help debug an application. It contains debugging procedures with breakpoints using the ADF Declarative Debugger. Finally, it explains how to write and run regression tests for your ADF Business Components-based business services.

This chapter includes the following sections:

30.1 Introduction to Oracle ADF Debugging

Like any debugging task, debugging the web application's interaction with Oracle ADF is a process of isolating specific contributing factors. However, in the case of web applications, generally this process does not involve compiling Java source code. Your web pages contain no Java source code, as such, to compile. In fact, you may not realize that a problem exists until you run and attempt to use the application. For example, these failures are only visible at runtime:

The failure to display data or to execute a method call arises from the interaction between the web page's components and the Oracle ADF Model layer. When a runtime failure is observed during ADF lifecycle processing, the sequence of preparing the model, updating the values, invoking the actions, and, finally, rendering the data failed to complete.

Fortunately, most failures in the web application's interaction with Oracle ADF result from simple and easy-to-fix errors in the declarative information that the application defines or in the EL expressions that access the runtime objects of the page's Oracle ADF binding container.

In your databound Fusion web application, you should examine the declarative information and EL expressions as likely contributing factors when runtime failures are observed. Read the following sections to understand editing the declarative files:

One of the most useful diagnostic tools is the ADF Logger. You use this logging mechanism in JDeveloper to capture runtime traces messages. With ADF logging enabled, JDeveloper displays the application trace in the Message Log window. The trace includes runtime messages that may help you to quickly identify the origin of an application error. Read Section 30.4, "Using the ADF Logger and Business Component Browser" to configure the ADF Logger to display detailed trace messages.

Supported Oracle ADF customers can request Oracle ADF source code from Oracle Worldwide Support. This can make debugging Oracle ADF Business Components framework code a lot easier. Read Section 30.5.1, "Using ADF Source Code with the Debugger" to understand how to configure JDeveloper to use the Oracle ADF source code.

If the error cannot be easily identified, you can utilize the ADF Declarative Debugger in JDeveloper to set breakpoints. When a breakpoint is reached, the execution of the application is paused and you can examine the data that the Oracle ADF binding container has to work with, and compare it to what you expect the data to be. Depending on the types of breakpoints, you may be able to use the Step functions to move from one breakpoint to another. For more information about the debugger, read Section 30.5, "Using the ADF Declarative Debugger".

JDeveloper provides integration with JUnit for your Business Components-based Fusion web application through a wizard that generates regression test cases. Read Section 30.8, "Regression Testing with JUnit" to understand how to write test suites for your application.

30.2 Correcting Simple Oracle ADF Compilation Errors

When you create web pages and work with the ADF data controls to create the ADF binding definitions in JDeveloper, the Oracle ADF declarative files you edit must conform to the XML schema defined by Oracle ADF. When an XML syntax error occurs, the JDeveloper XML compiler immediately displays the error in the Structure window.

Although there is some syntax checking during design time, the JDeveloper compiler is currently limited by an inability to resolve EL expressions. EL expressions in your web pages interact directly with various runtime objects in the web environment, including the web page's Oracle ADF binding container. At present, errors in EL expressions can be observed only at runtime. Thus, the presence of a single typing error in an object-access expression will not be detected by the compiler, but will manifest at runtime as a failure to interact with the binding container and a failure to display data in the page. For information about debugging runtime errors, see Section 30.3, "Correcting Simple Oracle ADF Runtime Errors".


Tip:

The JDeveloper Expression Builder is a dialog that helps you build EL expressions by providing lists of objects, managed beans, and properties. It is particularly useful when creating or editing ADF databound EL expressions because it provides a hierarchical list of ADF binding objects and their valid properties from which you can select. You should use the Expression Builder to avoid introducing typing errors. For details, see Section 12.7, "Creating ADF Data Binding EL Expressions".

Example 30-1 illustrates two simple compilation errors contained in a page definition file: tru instead of true and id="CountryCodesView1Iterator"/ instead of id="CountryCodesView1Iterator"/> (that is, the ID is missing a closing angle bracket).

Example 30-1 Sample Page Definition File with Two Errors

<?xml version="1.0" encoding="UTF-8" ?>
<pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
                version="11.1.1.42.54" id="app1page_2PageDef"
                Package="project1.pageDefs">
  <parameters/>
  <executables>
    <iterator Binds="CountryCodesView1" RangeSize="10"
              DataControl="AppModuleDataControl"
              id="CountryCodesView1Iterator"/ 
  </executables>
  <bindings>
    <action id="Find" RequiresUpdateModel="tru" Action="3"
             IterBinding="CountryCodesView1Iterator"/> 
 

During compilation, the Structure window displays the XML errors in the page, as shown in Figure 30-1.

Figure 30-1 Structure Window Displays XML Error

XML error in the Structure pane.

The logger window also displays the compilation errors in the page, as shown in Figure 30-2.

Figure 30-2 Compiler Window Displays XML Compile Error

Compile error.

To view and correct schema validation errors:

  1. From the main menu, choose View > Structure to open the Structure window or View > Log to open the Log Window.

  2. In either window, double-click the error message to open the file in the XML editor.

  3. In the XML editor, locate the highlighted lines.

    The highlighted lines will be lines with errors.

  4. Correct any errors.

    After an error has been corrected, the corresponding error message will be automatically removed from the Structure window.

  5. Optionally, you can recompile the project by choosing Run > Make and checking to see whether the compiler still produces the error message.

30.3 Correcting Simple Oracle ADF Runtime Errors

Failures of the Oracle ADF Model layer cannot be detected by the JDeveloper compiler, in part because the page's data-display and method-execution behavior relies on the declarative Oracle ADF page definition files. The Oracle ADF Model layer utilizes those declarative files at runtime to create the objects of the Oracle ADF binding container.

To go beyond simple schema validation, you will want to routinely run and test your web pages to ensure that none of the following conditions exists:

If this list of typical errors does not help you to find and fix a runtime error, you can initiate debugging within JDeveloper to find the contributing factor. For an ADF application, start setting ADF declarative breakpoints to find the problem. Using the ADF Declarative Debugger to set ADF declarative breakpoints is described in Section 30.5, "Using the ADF Declarative Debugger" and Section 30.6, "Setting ADF Declarative Breakpoints". This process involves pausing the execution of the application as it proceeds through the application and examining data. You can also use the ADF Declarative Debugger to set Java code breakpoints, as described in Section 30.7, "Setting Java Code Breakpoints".

30.4 Using the ADF Logger and Business Component Browser

If you are not able to easily find the error in either your web page or its corresponding page definition file, you can use the JDeveloper debugging tools to investigate where your application failure occurs.

You can set up the Java logger to display Java diagnostic messages. You can set several levels of logging to control the level and number of messages that are displayed.

You can then use the ADF Declarative Debugger to set breakpoints and examine the internals of the application. For more information, see Section 30.6, "Setting ADF Declarative Breakpoints" and Section 30.7, "Setting Java Code Breakpoints".

30.4.1 How to Turn On Diagnostic Logging

Even before you use the actual debugger, running the application with framework diagnostics logging turned on can be helpful to see what happen when the problem occurs. To turn on diagnostic logging, set the Java system property named jbo.debugoutput to the value console. Additionally, the value ADFLogger lets you route diagnostics through the standard Logger implementation, which can be controlled in a standard way through the logging.xml file.

The easiest way to set this system property while running your application inside JDeveloper is to edit your project properties and in the Run/Debug page, select a run configuration and click Edit. Then add the string -Djbo.debugoutput=console to the Java Options field.

30.4.2 How to Create an Oracle ADF Debugging Configuration

ADF Faces leverages the Java Logging API (java.util.logging.Logger) to provide logging functionality when you run a debugging session. Java Logging is a standard API that is available in the Java Platform at http://java.sun.com/j2se/1.4.2/docs/guide/util/logging/overview.html.

Because standard Java Logging is used, you can edit the logging.xml file to control the level of diagnostics you receive in the Log window.

If you are using the Integrated WLS in JDeveloper on the Windows platform, you can find the logging.xml file in a location similar to:

C:\Documents and Settings\username\ApplicationData\JDeveloper\latest_system_ folder\DefaultDomain\config\fmwconfig\servers\DefaultServer

The log files for the Integrated WLS are in a location similar to:

C:\Documents and Settings\username\ApplicationData\JDeveloper\latest_system_ folder\DefaultDomain\servers\DefaultServer\logs

The log files for a standalone WebLogic Server are in a location similar to:

$domain_home/servers/your_servername/logs

To edit ADF package-level logging in the logging.xml file:

If you want to change the logging level for Oracle ADF, you can edit the <logger> elements of the logging.xml configuration file.

By default the level is set to INFO for all packages of Oracle ADF. Set level="FINE" for detailed logging diagnostics.

For the Oracle ADF view layer packages oracle.adf.view.faces and oracle.adfinternal.view.faces, edit:

<logger name="oracle.adf" level="FINE"/><logger name="oracle.adfinternal" level="FINE"/>

For the Oracle ADF Model layer packages, edit these elements:

<logger name="oracle.adf" level="FINE"/><logger name="oracle.jbo" level="FINE"/>

For the Oracle ADF Controller layer packages, edit these elements:

<logger name="oracle.adf.controller" level="FINE"/><logger name="oracle.adfinternal.controller" level="FINE"/>

Alternatively, you can create a debug configuration in JDeveloper that you can choose when you start a debugging session.

Example 30-2 shows the portion of the logging.xml file where you can change the granularity of the log messages. Note in the example that the log for oracle.adf.faces has been changed to FINE to display more messages.

Example 30-2 Sample Section of the logging.xml Configuration File

</logging_configuration>
...
  <loggers>
      <logger name="oracle.adf" level="INFO"/>
      <logger name="oracle.adf.faces" level="FINE"/>
      <logger name="oracle.adf.controller" level="INFO"/>
      <logger name="oracle.bc4j" level="INFO"/>
      <logger name="oracle.adf.portal" level="INFO"/>
      <logger name="oracle.vcr" level="INFO"/>
      <logger name="oracle.portlet" level="INFO"/>
      <logger name="oracle.adfinternal" level="INFO"/>
      <logger name="oracle.adfdt" level="INFO"/>
      <logger name="oracle.adfdtinternal" level="INFO"/>
   </loggers>
</logging_configuration>

For the latest information about the different levels of the Java Logging system, go to the Sun Java website. Normally, the Java logging systems supports the following levels:

  • SEVERE

  • WARNING

  • INFO

  • CONFIG

  • FINE

  • FINER

  • FINEST

To create an Oracle ADF Model debugging configuration:

  1. In the Application Navigator, double-click the user interface project.

  2. In the Project Properties dialog, click the Run/Debug/Profile node and create a new run configuration.

  3. In the Run Configurations list, double-click the new run configuration to edit its properties.

  4. In the Edit Run Configuration dialog, for Launch Settings, enter the following Java options for the default virtual machine:

    -Djbo.debugoutput=adflogger -Djbo.adflogger.level=FINE

    Set the level=FINE for detailed diagnostic messages.

To create an Oracle ADF view Javascript logging configuration:

  1. In the Application Navigator, open the application or project web.xml file using the source editor.

  2. Add the following elements to the file:

    <context-param>
      <param-name>
         oracle.adf.view.rich.LOGGER_LEVEL
      </param-name>
      <param-value>
          FINE
      </param-value>
    </context-param>
    

To create a core JSF Reference Implementation logging configuration:

  1. Open the logging.properites file.

  2. Set the following line to FINE:

    <java.util.logging.ConsoleHandler.level=FINE

  3. Add the following line:

    com.sun.faces.level=FINE

    The log now includes JSF Reference Implementation messages such as:

    FINEST: End execute(phaseId=RESTORE_VIEW 1)

    com.sun.faces.lifecycle.LifecycleImpl hasPostDataOrQueryParams

    FINEST: Request Method: POST/PUT

    com.sun.faces.lifecycle.LifecycleImpl execute

30.4.3 How to Use the Business Component Browser with the Debugger

Often you will find it useful to analyze and debug ADF Business Components without having to run the Fusion web application from within JDeveloper. You can use the ADF Business Component Tester tool to complement your debugging process. The tester allows you to view, insert, and update the contents of business objects, to add view criteria, and to set named bind variables. For more information, see Section 6.3, "Testing View Object Instances Using the Business Component Browser".

To launch the Business Component Tester:

  1. In the Application Navigator, right-click the desired application module and choose Run.

  2. In the Oracle Business Component Browser dialog, review the connection information and click Connect to launch the tester.

To launch the Business Component Tester and go into debug mode:

  1. In the Application Navigator, select the desired application module and choose Debug.

  2. In the Oracle Business Component Browser dialog, review the connection information and click Connect to launch the tester and go into debug mode.

30.5 Using the ADF Declarative Debugger

The ADF Declarative Debugger provides declarative breakpoints that you can set at the ADF object level (such as task flows, page definition executables, method and action bindings, ADF lifecycle phases), as well as standard Java breakpoints. ADF declarative breakpoints provide a high-level object view for debugging ADF applications. For example, you can break before a task flow activity to see what parameters would be passed to the task flow, as shown in Figure 30-3. To perform the same function using only Java breakpoints would require you to know which class or method to place the breakpoint in. ADF declarative breakpoints should be the first choice for ADF applications.

Figure 30-3 ADF Declarative Breakpoint on a Task Flow Activity

ADF Declarative Breakpoint in a Task Flow.

The ADF Declarative Debugger also supports standard Java code breakpoints. You can set Java code breakpoints in any ADF application. You may be able to use Java code breakpoints when an ADF declarative breakpoint does not break in the place you want.

The ADF Declarative Debugger is built on top of the Java debugger, so it has the features and behaviors of the Java debugger. But instead of needing to know the Java class or method, you can set ADF declarative breakpoints in visual editors.

The ADF Declarative Debugger provides standard debugging features such as the ability to examine variable and stack data. When an application pauses at any breakpoint (ADF Declarative or Java code breakpoint), you can examine the application status using a variety of windows. You can check where the break occurs in the Breakpoint window. You can check the call stack for the current thread using the Stack window. When you select a line in the Stack window, information in the Data window, Watches window, and all Inspector windows is updated to show relevant data. You can use the Data window to display information about arguments, local variables, and static fields in your application.

The ADF Structure window displays the runtime structure of the project. The ADF Data window automatically changes its display information based on the selection in the ADF Structure window. For example, if a task flow node is selected, the ADF Data window displays the relevant debugging information for task flows, as shown in Figure 30-4.

Figure 30-4 ADF Structure Window and ADF Data Window for a Task Flow Selection

ADF Structure and ADF Data window for Task Flow.

You can mix ADF declarative breakpoints with Java code breakpoints as needed in your debugging session. Although you can use Step functions to advance the application from Java code breakpoint to Java code breakpoint, the Step functions for ADF declarative breakpoints have more constraints and limitations. For more information about using Step functions on ADF declarative breakpoints, see Table 30-3.

For information on how to use ADF declarative breakpoints, see Section 30.6, "Setting ADF Declarative Breakpoints".

For information on how to use Java breakpoints on classes and methods, see Section 30.7, "Setting Java Code Breakpoints"

In a JSF application (including ADF Fusion applications), when a breakpoint breaks, you can use the EL Evaluator to examine the value of an EL expression. The EL Evaluator has the browse function that helps you select the correct expression to evaluate. For more information, see Section 30.5.4, "How to Use the EL Expression Evaluator".

Whether you plan to use ADF declarative breakpoints or Java breakpoints, you can use the ADF Declarative Debugger with Oracle ADF source code. You can obtain Oracle ADF source code with Debug libraries. For more information about loading source code. see Section 30.5.1, "Using ADF Source Code with the Debugger".

30.5.1 Using ADF Source Code with the Debugger

If you have valid Oracle ADF support, you can obtain complete source code for Oracle ADF by opening a service request with Oracle Worldwide Support. You can request a specific version of the Oracle ADF source code. You may be given download and password information to decrypt the source code ZIP file. Contact Oracle Worldwide Support for more information.

Adding Oracle ADF source code access to your application debugging session will:

  • Provide access to the JDeveloper Quick Javadoc feature in the source editor. Without the source code, you will have only standard Javadoc.

  • Enhance the use of Java code breakpoints by displaying the Oracle source code that's being executed when the breakpoint is encountered. You can also set breakpoints easier by clicking on the margin in the source code line you want to break on. Without the source code, you will have to know the class, method, or line number in order to set a breakpoint within Oracle code.

  • For Java code breakpoints set within the source code, you will be able to see the values of all local variables and member fields in the debugger.

The ADF source code ZIP file may be delivered within an encrypted "outer" ZIP file to protect its contents during delivery. The "outer" ZIP name is sometimes a variant of the service request number.

After you have received or downloaded the "outer" ZIP, unzip it with the provided password to access the actual source code ZIP file. The ADF source code ZIP name should be a variant of the ADF version number and build number. For example, the ADF source ZIP may have a format similar to adf_vvvv_nnnn_source.zip, where vvvv is the version number and nnnn is the build number.

After you have access to the source code ZIP, extract its contents to a working directory.

30.5.2 How to Set Up the ADF Source User Library

You create a name for the source user library and then associate that name with the source zip file.

To add the ADF source zip file to the user library

  1. From the main menu, choose Tools > Manage Libraries.

  2. In the Manage Libraries dialog, with the Libraries tab selected, click New.

  3. In the Create Library window, enter a library name for the source that identifies the type of library.

  4. Select the Source Path node in the tree structure. Click Add Entry.


    Note:

    Do not enter a value for the class path. You need to provide a value only for the source path.

  5. In the Select Path Entry window, browse to the directory where the file was extracted and select the source zip file. Click Select.

  6. In the Create Library window, verify that the source path entry has the correct path to the source zip file, and deselect Deployed by Default. Click OK.

  7. Click OK.

30.5.3 How to Add the ADF Source Library to a Project

After the source library has been added to the list of available user libraries, add it to the project you want to debug.

To add the ADF source zip file to the project:

  1. In the Application Navigator, double-click the project or right-click the project and select Project Properties.

  2. In the Project Properties dialog, select Libraries and Classpaths.

  3. Click Add Library.

  4. In the Add Library dialog, under the Users node, select the source library you want to add and click OK.

    The source library should appear in the Classpath Entries section in the Project Properties dialog.

  5. Click OK.

30.5.4 How to Use the EL Expression Evaluator

When the application is paused at a breakpoint, you can use the EL expression evaluator to enter an EL expression for evaluation. You can enter arbitrary EL expressions for evaluation within the current context. If the EL expression no longer applies within the current context, the value will be evaluated to null.

The EL Evaluator is different from the Watches window in that EL evaluation occurs only when stopped at a breakpoint, not when stopped at subsequent debugging steps.

The EL Evaluator is available for debugging any JSF application.


Caution:

Be wary when you are evaluating EL expressions that you do not indirectly change application data and therefore the behavior of the application. For example, if you evaluate #{foo.bar}, the corresponding getBar() method modifies application data.

To use the EL Evaluator:

  1. Set a breakpoint in the application.

    The application must be a JSF application. It does not need to be an ADF application.

  2. Start the debugging process.

    You can:

    • From the main menu, choose Run > Debug.

    • From the Application Navigator, right-click the project, adfc-config.xml, faces-config.xml, task flow, or page and choose Debug.

    • From the overview editor for ADF task flows, right-click an activity and choose Debug. Only task flows that do not use page fragments can be run.

  3. When the breakpoint is reached, the EL Evaluator should appear as a tab in the debugger window area. Click the EL Evaluator tab to bring it forward. If it does not appear, choose View > Debugger > EL Evaluator from the main menu.


    Note:

    Be sure that the application has actually hit a breakpoint by checking the Breakpoint window or checking that there is an Execution Point icon (red right arrow) next to the breakpoint. Depending on where you set the breakpoint, an application may appear to be stopped when in fact it is waiting for user input at the page.

  4. Enter an EL expression in the input field.

    When you click in the field after entering #{ or after a period, a discovery function provides a selectable list of expression items, as shown in Figure 30-5. Auto-completion will be provided for easy entry. You can evaluate several EL expressions at the same time by separating them with semicolons.

    Figure 30-5 Using the Discovery Function of the EL Evaluator

    EL Evaluator
  5. When you finish entering the EL expression, click Evaluate and the expression is evaluated, as shown in Figure 30-6.

    Figure 30-6 EL Expression Evaluated

    EL Expression Evaluated

30.5.5 How to View and Export Stack Trace Information

If you are unable to determine what the problem is and to resolve it yourself, typically your next step is to ask someone else for assistance. Whether you post a question in the OTN JDeveloper Discussion Forum or open a service request on Metalink, including the stack trace information in your posting is extremely useful to anyone who will need to assist you further to understand exactly where the problem is occurring.

JDeveloper's Stack window makes communicating this information easy. Whenever the debugger is paused, you can view the Stack window to see the program flow as a stack of method calls that got you to the current line. Right-click the Stack window background and choose Preferences. You can set the Stack window preference to include the line number information, as well as the class and method name that will be there by default. Finally, the context menu option Export lets you save the current stack information to an external text file whose contents you can then post or send to whomever might need to help you diagnose the problem.

30.6 Setting ADF Declarative Breakpoints

You use the ADF Declarative Debugger features in JDeveloper to declaratively set breakpoints on ADF task flow activities, page definition executables, method, action, and value bindings, and ADF Lifecycle phases. Instead of needing to know all the internal constructs of the ADF code, such as method names and class names, you can set breakpoints at the highest level of object abstraction.

You can add breakpoints to task flow activities in the Diagram tab of the overview editor for ADF task flows. You can select a task flow activity and use the context menu to toggle or disable breakpoints on that activity, or press the F5 button. After the application pauses at the breakpoint, you can view the runtime structure of the objects in the ADF Structure window as a tree structure. The ADF Data window displays a list of data for a given object selected in the ADF Structure window.

For example, when you set a breakpoint on a task flow call activity in the Browse Orders task flow, a red dot icon appears in the call activity, as shown in Figure 30-7.

Figure 30-7 ADF Declarative Breakpoint on a Task Flow Activity

Task Flow breakpoint.

When the breakpoint is reached, the application is paused and the icon changes, as shown in Figure 30-8.

Figure 30-8 Application Paused at an ADF Declarative Breakpoint

ADF Declarative Breakpiont.

Similarly, you can set ADF declarative breakpoints in the page definition file. You set breakpoints for items in the bindings and executables lists by clicking on the margin next to the item or by selecting from the context menu. Again, a red dot icon that indicates the breakpoint is set, as shown in Figure 30-9.

Figure 30-9 ADF Declarative Breakpoints in the Page Definition File

Page Def breakpoints.

You can also set Before and After breakpoints on all the ADF lifecycle phases. You can launch the ADF lifecycle breakpoint dialog from the Breakpoint window, as shown in Figure 30-10.

Figure 30-10 Breakpoint Window Dropdown Menu

Breakpoint window dropdown menu.

The Create ADF Lifecycle Phase Breakpoint dialog allows you to select different lifecycle breakpoint options, as shown in Figure 30-11.

Figure 30-11 Create ADF Lifecycle Phase Breakpoint Dialog

Create ADF Lifecycle Phase Breakpoint Dialog

You can also use the ADF Lifecycle Breakpoints dialog from the ADF Structure window or the overview editor for ADF task flows to set ADF lifecycle phase breakpoints. For more information about ADF lifecycle phases, see Chapter 20, "Understanding the Fusion Page Lifecycle".

You can define both ADF declarative breakpoints and standard Java code breakpoints when using the ADF Declarative Debugger. Depending on your debugging scenario, you may only need to use the declarative breakpoints to debug the application. Or you may find it necessary to add additional breakpoints in Java code that are not available declaratively. For information on Java code breakpoints, see Section 30.7.1, "How to Set Java Breakpoints on Classes and Methods". Table 30-1 lists the available ADF declarative debugger breakpoint locations.

Table 30-1 ADF Declarative Debugger Breakpoints

ADF Area Declarative Breakpoint JDeveloper Editor JDeveloper Location JDeveloper Context Menu Command Description

Page Definition

Before executable:

  • Iterator

  • invokeAction

  • Region instantiation

Overview editor for page definition files

Page Definition Overview tab, Executables section

Toggle Breakpoint or F5

Pauses debugging when executable is refreshed. For taskFlow bindings, this represents two times per lifecycle: first, during prepareModel (initial region creation), and then again during prepareRender (where dynamic regions swap their corresponding task flow ID).

Before action binding:

  • methodAction

  • Built-in operations

Page Definition Overview tab, Bindings section

Toggle Breakpoint or F5

Pauses debugging when binding is executed.

Before attribute value binding

Page Definition Overview tab, Bindings section

Toggle Breakpoint or F5

Pauses debugging before the attribute's setInputValue() ADF source code method is executed. New values will be the parameters to setInputValue().

ADF Task Flow

Before activity

Overview editor for ADF task flows

Overview editor for ADF task flows, Diagram tab, Activity section

Toggle Breakpoint or F5

Pauses debugging before the activity executes within the JSF Invoke Application phase. The activity where the declarative breakpoint is defined has not yet been executed. An exception are view activities; they pause within the JSF Render Response phase after the view activity is executed, but before the new page is rendered. By pausing at that point, the view activity values can be inspected using the ADF Structure and ADF Data windows.

ADF lifecycle phase

Before ADF Lifecycle phase

After ADF Lifecycle phase

ADF Structure window

Overview editor for ADF task flows

Breakpoint window

ADF Structure window toolbar button

Overview editor for ADF task flows Diagram tab

Breakpoint window Add button


A Before breakpoint pauses debugging before the ADF lifecycle phase.

An After breakpoint pauses debugging after the ADF lifecycle phase.

The ADF lifecycle JSF Render Response and Prepare Render phase Before and After breakpoints are executed in the following order:

  • Before jsfRenderResponse.

  • Before prepareRender. (prepareRender phase executes).

  • After prepareRender. (jsfRenderResponse phase executes).

  • After jsfRenderResponse.


The Breakpoint window has a toolbar that includes buttons to add, edit, delete, enable, and disable breakpoints, as shown in Figure 30-10. The add breakpoint dropdown menu includes functions to add Java code breakpoints and ADF lifecycle phase breakpoints. To set ADF task flow breakpoints and page definition declarative breakpoints, use the overview editor for ADF task flows Diagram tab or overview editor for page definition files Overview tab, respectively.

You can edit the ADF task flow and page definition declarative breakpoints using the edit command from the Breakpoint window on common fields except for the condition and method name.

Table 30-2 lists how an ADF declarative breakpoint will appear in the Breakpoint window under the Description and Type columns. When you double-click an ADF declarative breakpoint in the Breakpoint window, the overview editor for the corresponding task flow or page definition file will appear in the workspace showing the breakpoint location.

Table 30-2 Breakpoint Window Display of ADF Declarative Breakpoints

Declarative Breakpoint Type Description Column Type Column

Before page definition executable:

  • Iterator

  • invokeAction

Before page definition@executable id

Page definition executable breakpoint

Before page definition action binding:

  • methodAction

  • Built-in Operations

Before page definition@binding id

Page definition binding breakpoint

Before page definition attribute value binding

Before page definition@binding id

Page definition binding breakpoint

Before ADF task flow activity

Before task flow document#task flow id@activity id

Task flow activity breakpoint

Before ADF lifecycle phase

Before adf lifecycle phase

ADF lifecycle phase breakpoint

After ADF lifecycle phase

After adf lifecycle phase

ADF lifecycle phase breakpoint


Table 30-3 lists the step commands that can be used with ADF declarative breakpoints.

Table 30-3 ADF Declarative Debugger Step Commands

ADF Debugger Step Commands Description

Find Execution Point

Supported for declarative breakpoints to display the current execution point open and active within the corresponding editor.

Step Over (F8)

Supported for task flow activity declarative breakpoints to step from activity to activity within a task flow. If user interaction is required (for example, page displayed), once it is received (for example, button selected), processing will resume and then will pause before the next task flow activity.

supported for page definition executable breakpoints. The application will step to the next page definition executable breakpoint.

Supported for ADF lifecycle phase declarative breakpoints to step to the next Before or After ADF lifecycle phase location.

Step Into (F7)

Supported only for task flow activity declarative breakpoints defined on task flow call activities. Task flow activity declarative breakpoints pause the application just before the activity is executed. The Step Into function provides the ability to pause debugging just prior to executing the called task flow default activity. This action would be the same as placing a task flow activity declarative breakpoint on the called task flow default activity.

Step Out (Shift F7)

Supported for task flow activity declarative breakpoints to step out of the current called task flow and back into the caller (if any). If user interaction is required (for example, page displayed) once user interaction received (for example, button selected), processing will resume and will pause before the next user interaction or activity within the calling task flow.

Continue Step (Shift F8)

Not supported for declarative breakpoints.

Step to End of Method

Not supported for declarative breakpoints.

Run to Cursor

Not supported for declarative breakpoints.

Pop Frame

Not supported for declarative breakpoints, as it is for Java code, to return to a previous point of execution.


The ADF Declarative Debugger uses the standard debugger icons and notations for setting, toggling, and indicating the status of ADF declarative breakpoints.

The Breakpoint window list all breakpoints, including ADF declarative breakpoints, as shown in Figure 30-12.

Figure 30-12 Breakpoint Window showing ADF declarative and Java code breakpoints

Breakpoint Window Showing ADF Declarative Breakpoints

When an ADF declarative breakpoint is set, it appears as a red dot icon in the task flow activity, in the page definition breakpoint margin, or in the ADF Lifecycle Breakpoint window, as shown in Figure 30-13, Figure 30-14, and Figure 30-15.

Figure 30-13 ADF Declarative Breakpoint Enabled on a Task Flow Activity

ADF Declarative Breakpoint Enabled

Figure 30-14 ADF Declarative Breakpoints Enabled in the Page Definition Executables

ADF Declarative Breakpoints Enabled in Page def.

Figure 30-15 ADF Lifecycle Phase Breakpoints Enabled in the ADF Lifecycle Breakpoints Window

DF Lifecycle Phase Breakpoints Enabled

When an ADF task flow or page definition declarative breakpoint is disabled, the red icon becomes a gray icon, as shown in Figure 30-16.

Figure 30-16 ADF Declarative Breakpoint Disabled

ADF Declarative Breakpoint Disabled

When an ADF task flow declarative breakpoint is active, the red dot icon has a green checkmark, as shown in Figure 30-17.

Figure 30-17 ADF Declarative Breakpoint Active

ADF Declarative Breakpoint Active

When the application is paused at an ADF declarative breakpoint, an Execution Point icon appears, as shown in Figure 30-18.

Figure 30-18 Application Paused at an Execution Point on a Task Flow

Application Paused at an Execution Point

When the application is paused at an ADF lifecycle declarative breakpoint, an Execution Point icon appears next to the lifecycle phase in the ADF Lifecycle Breakpoint window, as shown in Figure 30-19. The name of the current ADF lifecycle phase is also displayed in the ADF Structure window.

Figure 30-19 Application Paused at an Execution Point on an ADF Lifecycle Phase

Paused at ADF lifecycle breakpoint

30.6.1 How to Set and Use Task Flow Activity Breakpoints

After you have created a task flow diagram, you can set ADF declarative breakpoints on task flow activities.

To set a breakpoint on a task flow activity:

  1. Open the task flow in the overview editor for ADF task flows Diagram tab.

  2. Select the task flow activity node, right-click and choose Toggle Breakpoint from the context menu, or press F5.

    A breakpoint icon appears on the task flow activity.

  3. Start the debugging process.

    You can:

    • From the main menu, choose Run > Debug.

    • From the Application Navigator, right-click the project, adfc-config.xml, faces-config.xml, task flow, or page and choose Debug.

    • From the overview editor for ADF task flows, right-click an activity and choose Debug. Only task flows that do not use page fragments can be run.

  4. When the application is paused at a breakpoint, an Execution Point icon appears next to the breakpoint icon on the task flow activity. You can examine the application using different debugger windows.


    Note:

    Be sure that the application has actually hit a breakpoint by checking the Breakpoint window or checking that there is an Execution Point icon (red right arrow) next to the breakpoint. Depending on where you set the breakpoint, an application may appear to be stopped when in fact it is waiting for user input at the page.

    The application is paused before the task flow activity executes (except for view activities).

  5. The ADF Structure window and the ADF Data window appear by default, as well as several debugger windows. You can examine the runtime structure in the ADF Structure window and its corresponding data in the ADF Data window. See Section 30.6.6, "How to Use the ADF Structure Window" and Section 30.6.7, "How to Use the ADF Data Window".

  6. Select a node in the ADF Structure window and view pertinent information in the ADF Data window. Task flow activity declarative breakpoints pause the application just before the task flow activity is executed. You can use the Step Into (F7) function to pause the application just prior to executing the called task flow default activity.

  7. Continue debugging the application as required, using the Step functions as described in Table 30-3. The key Step functions are Step Into (F7) and Step Over (F8).

    When the application is paused, you can remove or disable existing breakpoints and set new breakpoints.

30.6.2 How to Set and Use Page Definition Executable Breakpoints

If your page definition has executables, you can set breakpoints to pause the application on these executables. For example, you can set breakpoints to pause the application when iterators are refreshed or when invokeAction methods are performed.

To set a breakpoint on an executable in the page definition file:

  1. Open the overview editor for page definition files. Select the Overview tab.

  2. In the overview editor, select an executable from the Executables list and click in the breakpoint margin to the left of the item.

    A breakpoint icon appears in the margin next to the item.

  3. Start the debugging process.

    You can:

    • From the main menu, choose Run > Debug.

    • From the Application Navigator, right-click the project, adfc-config.xml, faces-config.xml, task flow, or page and choose Debug.

    • From the overview editor for ADF task flows, right-click an activity and choose Debug. Only task flows that do not use page fragments can be run.

  4. When the application is paused at a breakpoint, an Execution Point icon appears in the margin next to the breakpoint icon of the executable item. You can examine the application using several debugger windows.

    The application pauses when the executable binding is refreshed. If this is a taskFlow executable, the pause occurs in the prepareModel and the prepareRender lifecycles.


    Note:

    Be sure that the application has actually hit a breakpoint by checking the Breakpoint window or checking that there is an Executable Point icon (red right arrow) next to the breakpoint. Depending on where you set the breakpoint, an application may appear to be stopped when in fact it is waiting for user input at the page.

  5. The ADF Structure window and the ADF Data window appear by default, as well as several debugger windows. You can examine the runtime structure in the ADF Structure window and its corresponding data in the ADF Data window. See Section 30.6.6, "How to Use the ADF Structure Window" and Section 30.6.7, "How to Use the ADF Data Window".

  6. Select a node in the ADF Structure window and view pertinent information in the ADF Data window.

  7. When the application is paused, you can remove or disable existing breakpoints and set new breakpoints.

30.6.3 How to Set and Use Page Definition Action Binding Breakpoints

You can set breakpoints in the page definition file on action bindings and methodAction bindings. The application pauses when the binding is executed.

To set a breakpoint on an action binding in the page definition file:

  1. Open the overview editor for page definition files. Select the Overview tab

  2. Select a methodAction binding or built-in operation item from the Bindings list and click in the breakpoint margin to the left of the item.

    A breakpoint icon appears next to the item.

  3. Start the debugging process.

    You can:

    • From the main menu, choose Run > Debug.

    • From the Application Navigator, right-click the project, adfc-config.xml, faces-config.xml, task flow, or page and choose Debug.

    • From the overview editor for ADF task flows, right-click an activity and choose Debug. Only task flows that do not use page fragments can be run.

  4. When the application is paused at a breakpoint, an Execution Point icon appears next to the breakpoint icon on the action binding item. You can examine the application using several debugger windows.

    The application is paused when the binding is executed.


    Note:

    Be sure that the application has actually hit a breakpoint by checking the Breakpoint window or checking that there is an Execution Point icon (red right arrow) next to the breakpoint. Depending on where you set the breakpoint, an application may appear to be stopped when in fact it is waiting for user input at the page.

  5. The ADF Structure window and the ADF Data window appear by default, as well as several debugger windows. You can examine the runtime structure in the ADF Structure window and its corresponding data in the ADF Data window. See Section 30.6.6, "How to Use the ADF Structure Window" and Section 30.6.7, "How to Use the ADF Data Window".

  6. Select a node in the ADF Structure window and view pertinent information in the ADF Data window.

  7. When the application is paused, you can remove or disable existing breakpoints and set new breakpoints.

30.6.4 How to Set and Use Page Definition Attribute Value Binding Breakpoints

If the page definition has attribute values bindings, you can set breakpoints on the attribute value bindings to pause the application.

To set a breakpoint on an attribute value binding in the page definition file:

  1. Open the overview editor for page definition files. Select the Overview tab.

  2. Select an attribute value from the Bindings list and click on the breakpoint margin to the left of the item. A breakpoint icon appears next to the attribute value binding.

  3. Start the debugging process.

    You can:

    • From the main menu, choose Run > Debug.

    • From the Application Navigator, right-click the project, adfc-config.xml, faces-config.xml, task flow, or page and choose Debug.

    • From the overview editor for ADF task flows, right-click an activity and choose Debug. Only task flows that do not use page fragments can be run.

  4. When the application is paused at a breakpoint, an Execution Point icon appears next to the breakpoint icon on the attribute value binding. You can examine the application using several debugger windows.

    The application is paused before the setInputValue() method of the ADF source code. New values will be the parameters that go into this method.


    Note:

    Be sure that the application has actually hit a breakpoint by checking the Breakpoint window or checking that there is an Execution Point icon (red right arrow) next to the breakpoint. Depending on where you set the breakpoint, an application may appear to be stopped when in fact it is waiting for user input at the page.

  5. The ADF Structure window and the ADF Data window appear by default, as well as several debugger windows. You can examine the runtime structure in the ADF Structure window and its corresponding data in the ADF Data window. See Section 30.6.6, "How to Use the ADF Structure Window" and Section 30.6.7, "How to Use the ADF Data Window".

  6. Select a node in the ADF Structure window and view pertinent information in the ADF Data window.

  7. Continue debugging the application as required, using the Step functions as described in Table 30-3. The key Step function is Step Over (F8).

    When the application is paused, you can remove or disable existing breakpoints and set new breakpoints.

30.6.5 How to Set and Use ADF Lifecycle Phase Breakpoints

You can set both Before and After ADF lifecycle phase breakpoints on any of the ADF lifecycle phases. For each phase, you can set Before only, After only, or both. You can set breakpoints on as many phases as you want.

You can create the breakpoint and customize the options using the Create ADF Lifecycle Phase Breakpoint dialog from the Breakpoint window menu. Or You can create breakpoints with the default options using the ADF Lifecycle Breakpoints window. After a lifecycle breakpoint has been set, you can edit the options using the Edit ADF Lifecycle Phase Breakpoint dialog, which is also launched from the Breakpoint window.

You can set ADF lifecycle breakpoints on any of the ADF lifecycle phases:

  • JSF Restore View

  • Initialize Content

  • Prepare Model

  • JSF Apply Request Values

  • JSF Process Validations

  • JSF Update Model Values

  • Validate Model Updates

  • JSF Invoke Application

  • Metadata Commit

  • Prepare Render

  • JSF Render Response

To set an ADF lifecycle phase breakpoint from the Breakpoint window:

  1. Choose View > Debugger > Breakpoints to open the Breakpoint window.

  2. Click the Add icon and choose ADF Lifecycle Phase Breakpoint.

  3. In the Create ADF Lifecycle Phase Breakpoint dialog Definition tab:

    • Select the ADF lifecycle phase where you want to set a breakpoint

    • Select Before Phase or After Phase breakpoint

  4. In the Conditions tab, select the options you want and click OK.

  5. In the Actions tab, select the options you want and click OK.

To set an ADF Lifecycle Phase Breakpoint using the breakpoint icon:

  1. In the overview editor for ADF task flows or in the ADF Structure window, click on the ADF Lifecycle Breakpoints icon, as shown in Figure 30-20.

    Figure 30-20 ADF Lifecycle Breakpoints Icon

    ADF Lifecycle Breakpoint icon
  2. In the ADF Lifecycle Breakpoints window, click on the left margin next to the ADF lifecycle phase to set a Before breakpoint, and on the right margin to set an After breakpoint. A red dot icon appears to indicate the breakpoint is set, as shown in Figure 30-21. The breakpoint will be set with the default breakpoint options. To remove the breakpoint, click the red dot icon.

    Figure 30-21 Setting Breakpoints in the ADF Lifecycle Breakpoints Window

    Uising the ADF LIfecycle breakpoint window
  3. If you want to edit breakpoint options, select the breakpoint in the Breakpoint window and choose the Edit icon.

To debug an application using ADF Lifecycle Phase Breakpoints:

  1. Start the debugging process.

    You can:

    • From the main menu, choose Run > Debug.

    • From the Application Navigator, right-click the project, adfc-config.xml, faces-config.xml, task flow, or page and choose Debug.

    • From the overview editor for ADF task flows, right-click an activity and choose Debug. Only task flows that do not use page fragments can be run.

  2. When the application is paused at an ADF lifecycle phase breakpoint, an Execution Point icon appears next to the breakpoint icon and the ADF lifecycle phase is in bold in the ADF Lifecycle Breakpoints window, as shown in Figure 30-22. You can examine the application using several debugger windows.

    Figure 30-22 Execution point displayed in the ADF Lifecycle Breakpoints Window

    ADF lifecycle breakpoint window

    Note:

    Be sure that the application has actually hit a breakpoint by checking the Breakpoint window for an breakpoint encounter or checking that there is an Execution Point icon (red right arrow) next to the breakpoint. Depending on where you set the breakpoint, an application may appear to be stopped when in fact it is waiting for user input at the page.

  3. The ADF Structure window and the ADF Data window appear by default, as well as several debugger windows. You can examine the runtime structure in the ADF Structure window and its corresponding data in the ADF Data window. The current ADF lifecycle phase is displayed at the top of the ADF Structure window. For more information, see Section 30.6.6, "How to Use the ADF Structure Window" and Section 30.6.7, "How to Use the ADF Data Window".

  4. Select a node in the ADF Structure window and view pertinent information in the ADF Data window.

  5. Continue debugging the application as required, using the Step functions as described in Table 30-3. The key Step function is Step Over (F8).

    When the application is paused, you can remove or disable existing breakpoints and set new breakpoints.

30.6.6 How to Use the ADF Structure Window

When the application is paused at a breakpoint, the ADF Structure window displays a tree structure of the ADF runtime objects and their relationships within the application. In particular, it shows the hierarchy of view ports, which represent either the main browser window or contained regions and portlets. When you select different items in the ADF Structure window, the data display in the accompanying ADF Data window changes. For more information about the ADF Data window, see Section 30.6.7, "How to Use the ADF Data Window".

The ADF Structure window and the ADF Data window are shown by default during a debugging session when either of the following is true:

  • The project being debugged contains a WEB-INF/adfc-config.xml file.

  • The project being debugged contains any ADF Faces tag libraries.

You can launch the ADF Structure window by choosing View > Debugger > ADF Structure from the main menu. From the ADF Structure window, you can launch the ADF Lifecycle Breakpoint window using the ADF Lifecycle Breakpoints icon.

When a breakpoint is encountered, the ADF Structure window displays the ADF lifecycle phase and a tree structure of the runtime objects, as shown in Figure 30-23.

Figure 30-23 ADF Structure Window showing the Runtime Objects

ADF Structure Pane

When you select an item in the ADF Structure window, the data and values associated with that item are displayed in the ADF Data window. Figure 30-24 shows a task flow selected in the ADF Structure window, with its corresponding information displayed in the ADF Data window.

Figure 30-24 ADF Structure Window Selection and ADF Data Window Data

ADF Structure Window Selection and ADF Data Window Data

The roots of the hierarchy are the sibling nodes Scopes and ADF Context. The current view port where processing has stopped appears in bold. Default selections within the tree will be retained from the previous breakpoint, so you can monitor any changes between breakpoints. The ADF object where the ADF declarative breakpoint was defined will be opened in the corresponding JDeveloper editor, either the overview editor for ADF task flows or the overview editor for page definition files.

The ADF Structure tree will be rebuilt each time the application breaks and at subsequent steps to reflect the changed state of the objects. Although the entire tree hierarchy will be displayed, only items within the current view port and its parent view port(s) will be available for selection and further inspection. All other items in the tree hierarchy not in the current context will be dimmed and disabled. You can still use the hierarchy to identify runtime object relationships within the application, but it will be limited to the current context (and its parent view ports).

Table 30-4 lists the different types of items that can be displayed in the ADF Structure window hierarchy tree.

Table 30-4 ADF Structure Window Items

ADF Structure Tree Item Description

Scopes

Displayed at the top of the ADF Structure hierarchy above its sibling ADF Context node. There is only one Scopes node in the ADF Structure hierarchy. You can expand the Scopes node to show a list of child scope nodes (such as viewScope and pageFlowScope). If you select a child scope node, the ADF Data window displays the variables and values for that scope.

ADF context

Displayed as the root node of the ADF Structure hierarchy below its sibling Scopes node. There will only be one ADF Context within the ADF Structure hierarchy.

View port

View ports are an ADF Controller concept. For this reason, view ports appear within the ADF Structure hierarchy only when the application being debugged utilizes ADF Controller.

View ports can represent one of the following:

  • Browser: Main browser view ports, also known as root view ports, appear as children of the root ADF Context. If multiple browser windows are open during the debugging runtime session, multiple browser view ports are presented within the hierarchy. The label of each browser view port displays the text "Browser". The view port also provides a tooltip for the view port ID similar to the following example: "Root View Port: 999999".

  • Region: Region view ports appear as the children of page or page fragments. They are also known as child view ports. The label of each region view port displays the text "Region". The region also provides a tooltip for the view port ID similar to the following example: "Child View Port: 999999".

ADF task flows

The page flow stack corresponding to each view port appears as a hierarchy of ADF task flows. The initial ADF task flow called for the stack is a direct child of its corresponding view port. The label of each ADF task flow reflects the corresponding ADF task flow display name (if any) or its task flow ID. Region view ports will not display the item in their page flow stack hierarchy for their implied unbounded task flow. The task flow also provides a tooltip displaying the ADF task flow path, and a context menu item to open to the corresponding ADF task flow within the editor workspace.

If ADF Controller is not utilized in the application (or if the page is run outside the context of an ADF task flow), ADF task flows will not appear within the hierarchy.

Page

Represents the page (view) currently displayed within a browser view port. Presented along with its associated binding container (if any) as a child. If the application being debugged utilizes ADF Controller, pages will be children of each browser view port. The label of each page reflects its corresponding runtime view ID. The page also provides a tooltip displaying the page path, and a context menu item to open to the corresponding page within the editor workspace. If a visual user interface in not implemented for the application, the page will not appear within the hierarchy.

Page fragment

Represents the page fragment currently displayed within a region view port. Presented along with its associated binding container (if any) as a child. If the application being debugged utilizes ADF Controller, page fragments will be children of each region view port. The label of each page fragment node reflects its corresponding runtime view ID. The page fragment also provides a tooltip displaying the source file page definition path, and a context menu item to open to the corresponding page fragment within the editor workspace.

Binding container

Represents the binding container for the corresponding page or page fragment. The label of each binding container reflects its corresponding file name (page definition file) without the extension. The binding container node will also provide a tooltip displaying the page fragment path. The binding container also appears under current task flows when used to represent task flow activity bindings (for example, method call activity bindings).

If ADF Model is not utilized for the application, binding containers will not appear.


30.6.7 How to Use the ADF Data Window

When an application is paused at an ADF declarative breakpoint, the ADF Data window displays relevant data based on the selection in the ADF Structure window. You can launch the ADF Data window by choosing View > Debugger > ADF Data from the main menu. The content of the ADF Data window based on the selection in the ADF Structure window is summarized in Table 30-5.

Table 30-5 ADF Data Window Content for an ADF Structure Window Selection

ADF Structure Window ADF Data Content

Scopes

Displays memory scope values based on the current context. pageFlowScope will also appear within ADF task flow content for the pageFlowScope values specific to a selected ADF task flow (not necessarily the current context). viewScope will also appear within the view port content for the viewScope values specific to a selected view port (not necessarily the current context).

ADF context

Displays the ADF context variables and values hierarchy. ADF context variables and values can be inspected by evaluating the #(data.adfContext) EL expression in the EL Evaluator.

View port

Displays view port details, including the viewScope contents.

Page flow stack entry

Displays information for the selected page flow stack entry, including current transaction status and ADF Model save point status.

Page/page fragment

Displays the page or page fragment UI component tree hierarchy for the selected page or page fragment if the page or page fragment has been rendered.

Binding container

Displays the binding container runtime values, including parameters, bindings, and executables.


The Scopes node in the ADF Structure window can be expanded to show a list of child scope nodes. When a child scope node is selected in the ADF Structure window, the ADF Data window displays the current context values for the selected memory scope, as shown in Figure 30-25.

Figure 30-25 Child Scope Selected in ADF Structure Window

Child Scope Selected in ADF Structure Window

If the Scopes node itself is selected, then the full list of memory scopes appears also in the ADF Data windows, which can also be expanded for inspection. Figure 30-26 shows the Scopes node selected in the ADF Structure window, and the viewScope child node being selected with its values displayed in the ADF Data window. You can inspect the values of requestScope, viewScope, pageFlowScope, applicationScope, and sessionScope by expanding each corresponding node. pageFlowScope will also appear within the ADF Task Flow content to reflect the values of the specific ADF task flow currently selected in the ADF Structure window. viewScope will also appear within the view port content to reflect the values of the specific view port currently selected in the ADF Structure window.

Figure 30-26 Scopes Node Selected in ADF Structure Window

Scopes context

When the ADF context is selected in the ADF Structure window, as shown in Figure 30-27, the current value of the ADF context variables will be displayed in the ADF Data window. You can also inspect ADF context variables and values by evaluating the #(data.adfContext) EL expression in the EL Evaluator. For more information, see Section 30.5.4, "How to Use the EL Expression Evaluator"

Figure 30-27 ADF Context Selected for ADF Data Window

ADF Context Selected for ADF Data Pane

Selecting a view port within the ADF Structure hierarchy will display the view port's current view port details in the ADF Data window, as shown in Figure 30-28. Values displayed for each view port are summarized in Table 30-6.

Figure 30-28 View Port Selected for ADF Data Window

View Port Selected for ADF Data Pane

Table 30-6 ADF Data Window Content for View Port

View Port Description

View port ID

It is displayed

Client ID

It is displayed

Initial task flow ID

Initial ADF task flow on the view ports page flow stack. Not displayed for unbounded task flows. Appears as a link to open the corresponding task flow definition in the editor workspace.

Current task flow ID

Displayed for bounded task flows and not displayed for unbounded task flows. Current ADF task flow on the view port's page flow stack. Appears as a link to open the corresponding task flow definition in the editor workspace.

View activity ID

Current ADF task flow view activity ID. Applicable only if the current ADF task flow activity is a view activity.

Submitted activity ID

ADF task flow activity submitting the current request.

Final activity ID

ADF task flow activity receiving the current request.

Bookmark redirect outstanding

(Boolean)

Exception

(If any)

View memory scope

View memory scope variables and values for the selected view port.


In the ADF Structure window, each individual ADF task flow within a page flow stack hierarchy is selectable. An ADF task flow selected in the ADF Structure window will display the current task flow information in the ADF Data window, as shown in Figure 30-29. Task flow templates utilized by the selected ADF task flow will be determined by manually navigating to the ADF task flow source file. This is the same way similar functionalities are handled for Java source files. Current information for a selected ADF task flow is summarized in Table 30-7.

Figure 30-29 Task Flow Selected for ADF Data Window

Task Flow Selected for ADF Data Pane

Table 30-7 ADF Data Window Content for Task Flow

Task Flow Description

ADF task flow reference

ADF task flow reference

Task flow call activity Id

Task flow activity ID for the calling task flow. Will be null for the first ADF task flow within each view port task flow call hierarchy.

Calling view activity Id

The calling view activity of the current view activity displayed by the ADF task flow, if any.

View reached

(Boolean)

Train model

Only applicable if the ADF task flow is created as a train.

Transaction started

(Boolean) Identifies the current status of the ADF task flow transactional state. For example, did the ADF task flow begin a new transaction?

Transaction shared

(Boolean) Identifies the current status of the ADF task flow transactional state. For example, did the ADF task flow join an existing transaction?

Save point

Identifies the current status of the ADF task flow's ADF Model save point creation state. For example, was a model save point created upon ADF task flow entry?.

Remote task flow called

(Boolean)

Remote task flow return URL

Applies only when calling an ADF task flow remotely. Identifies the URL for return once the task flow called remotely completes.

Data control frame created

(Boolean)

Data control frame

Name of data control frame associated with the ADF task flow.

Page flow memory scopes

Appears as an expandable node to allow inspection of the values of the page flow memory scopes for the task flow selected in the ADF Structure window.

The page flow memory scopes will also be displayed within the ADF Structure window's Scopes node. However, the page flow memory scope for the Scopes node will always be based on the application's current context, not the selected task flow.


When you select a page or page fragment node in the ADF Structure hierarchy, the corresponding UI component tree is displayed within the ADF Data window, as shown in Figure 30-30. If a page or page fragment is based on a page template, you can include the content coming from the page template outside any facet reference elements by selecting the Include Page Template Content checkbox at the top of the ADF Data window. If the page template content is not included, the page or page fragment UI component tree will appear structurally similar to its source file.

Figure 30-30 Page Selected for ADF Data Window

Page Selected for ADF Data Pane

When you select a binding container in the ADF Structure hierarchy, it will display the current values of its corresponding binding container bindings within the ADF Data window, as shown in Figure 30-31. You can inspect bindingContainer runtime information such as parameters, executables, and binding values.

Figure 30-31 Binding Container Selected for ADF Data Window

Binding Container Selected for ADF Data Pane

30.7 Setting Java Code Breakpoints

You can use the ADF Declarative Debugger to set breakpoints on Java classes and methods, as in any standard Java code debugger. You can use Java code breakpoints in combination with ADF declarative breakpoints or by themselves. For most ADF applications, ADF declarative breakpoints will provide enough debugging information to troubleshoot the application. For information about using ADF declarative breakpoints, see Section 30.6, "Setting ADF Declarative Breakpoints". However, you may need to set breakpoints on specific classes or methods for further inspection. Or, you may be debugging a non-ADF application, in which case, you can use Java code breakpoints.

JDeveloper provides a class locator feature that assists you in finding the class you want to break on. If you can obtain Oracle ADF source code, you can enhance your debugging by having access to various ADF classes and methods. For more information about getting ADF source code, see Section 30.5.1, "Using ADF Source Code with the Debugger". If you obtained the ADF source, you can further enhance the debugging experience by using the debug library version of the ADF source, as described in Section 30.7.4, "How to Use Debug Libraries for Symbolic Debugging".

30.7.1 How to Set Java Breakpoints on Classes and Methods

You can set Java breakpoints on your classes and methods. If you have ADF source code, you can set Java breakpoints in the source as well. If you are debugging an ADF application, you should check to see whether ADF declarative breakpoints can be used instead of Java code breakpoints. For more information, see Section 30.6, "Setting ADF Declarative Breakpoints".

Before you attempt to use breakpoints, you should try to run the application and look for missing or incomplete data, actions and methods that are ignored or incorrectly executed, or other unexpected results. If you did not find the problem, create a debugging configuration that will enable the ADF Log and send Oracle ADF messages to the Log window. For more information, see Section 30.4.2, "How to Create an Oracle ADF Debugging Configuration".

To set Java breakpoints to debug an application:

  1. Choose Navigate > Go to Java Class (or press Ctrl+Minus) and use the dialog to locate the Oracle ADF class that represents the entry point for the processing failure.


    Note:

    JDeveloper will locate the class from the user interface project with current focus in the Application Navigator. If your workspace contains more than one user interface project, be sure that the one with the current focus is the one you want to debug.

  2. Open the class file in the source editor and find the Oracle ADF method call that will enable you to step into the statements of the method.

  3. Set a breakpoint on the desired method and run the debugger.

  4. When the application stops on the breakpoint, use the Data window to examine the local variables and arguments of the current context.


Tip:

If you are using the Go to source context menu command in the Data, Watches, or Smart Data window, you can go back to the execution point by using the back button. You can also access the back button through the Navigate menu.

Once you have set breakpoints to pause the application at key points, you can proceed to view data in the Data window. To effectively debug your web page's interaction with the Oracle ADF Model layer, you need to understand:

  • The Oracle ADF page lifecycle and the method calls that get invoked

  • The local variables and arguments that the Oracle ADF Model layer should contain during the course of application processing

Awareness of Oracle ADF processing will give you the means to selectively set breakpoints, examine the data loaded by the application, and isolate the contributing factors.


Note:

JSF web pages may also use backing beans to manage the interaction between the page's components and the data. Debug backing beans by setting breakpoints for them as you would with any other Java class file.

30.7.2 How to Optimize Use of the Source Editor

Once you have added the ADF source library to your project, you have access to the helpful Quick Javadoc feature (Ctrl+D) that the source editor makes available. Figure 30-32 shows Quick Javadoc for a method like findSessionCookie().

Figure 30-32 Using Quick Javadoc on ADF API in the Source Editor

Screenshot shows Quick JavaDoc in Code Editor

30.7.3 How to Set Breakpoints and Debug Using ADF Source Code

After loading the ADF source code, you can debug any Oracle ADF code for the current project the same way that you do your own Java code. This means that you can press Ctrl+Minus to type in any class name in Oracle ADF, and JDeveloper will open its source file automatically so that you can set breakpoints as desired.

30.7.4 How to Use Debug Libraries for Symbolic Debugging

When debugging Oracle ADF source code, by default you will not see symbol information for parameters or member variables of the currently executing method.

For example, in a debugging session without ADF source code debug libraries, you may see unrecognizable names such as "_slot", as shown in Figure 30-33.

Figure 30-33 Local Symbols Are Hard to Understand Without Debug Libraries

Screen shot shows symbols in debugger without debug libs.

These names are hard to decipher and make debugging more difficult. You can make debugging easier by using the debug versions of the ADF JAR files supplied along with the source while debugging in your development environment.


Note:

The supplied debug libraries should not be used in a test or production environment, since they typically have slightly slower runtime performance than the optimized JAR files shipped with JDeveloper.

The debug library JARs are versions of Oracle ADF JARs that have been compiled with additional debug information. When you use these debug JAR files instead of the default optimized JARs, you will see all of the information in the debugger. For example, the variable evid is now identified by its name in the debugger, as shown in Figure 30-34.

Figure 30-34 Symbol Information Displayed in Debugger

Debugger with Debug Libraries.

Before you replace the standard library JAR, make sure that JDeveloper is not running. If it's currently running, exit from the product before proceeding.

To replace the standard library JARs with the debug library JARs:

  1. With JDeveloper closed, make a backup subdirectory of all existing optimized JAR files in the ./BC4J/lib directory of your JDeveloper installation. For example, assuming jdev11 is the JDeveloper home directory:

    C:\jdev11\BC4J\lib> mkdir backup
    C:\jdev11\BC4J\lib> copy *.jar backup
    
  2. For each ADF library that you want debug symbols for while debugging, copy the _g.jar version of the matching library over the existing, corresponding library in the C:\jdev11\BC4J\lib directory.

    This is safe to do since you made a backup of the optimized JAR files in the backup directory in Step 2.

    Since debug libraries typically run a little slower than libraries compiled without debug information, this diagnostic message is to remind you not to use debug libraries for performance timing:

    **************************************************************************
    *** WARNING: Oracle BC4J debug build executing - do not use for timing ***
    **************************************************************************
    
  3. To change back to the optimized libraries, simply copy the JAR file(s) in question from the ./BC4J/lib/backup directory back to the ./BC4J/lib directory.

30.7.5 How to Use Different Kinds of Java Code Breakpoints

You first need to understand the different kinds of Java code breakpoints and where to create them.

To see the debugger Breakpoints window, choose View > Debugger > Breakpoints from the main menu or press Ctrl+Shift+R.

You can create a new Java code breakpoint by choosing Create Breakpoint from the context menu in the Breakpoints window. The Breakpoint Type dropdown list controls what kind of breakpoint you will create, as shown in Table 30-8.


Note:

You can also use the Create Breakpoint dialog to create an ADF lifecycle phase declarative breakpoint. For information about creating ADF declarative breakpoints, see Section 30.6.5, "How to Set and Use ADF Lifecycle Phase Breakpoints".

Table 30-8 Different Types of Java Breakpoints

Breakpoint Type The Breakpoint Occurs Whenever Usage

Exception

An exception of this class (or a subclass) is thrown.

An Exception breakpoint is useful when you don't know where the exception occurs, but you know what kind of exception it is (for example, java.lang.NullPointerException, java.lang.ArrayIndexOutOfBoundsException, oracle.jbo.JboException). The checkbox options allow you to control whether to break on caught or uncaught exceptions of this class. The Browse button helps you find the fully qualified class name of the exception. The Exception Class combobox remembers the most recently used exception breakpoint classes. Note that this is the default breakpoint type when you create a breakpoint in the breakpoints window.

Source

A particular source line in a particular class in a particular package is run.

You rarely create a source breakpoint in the Create Breakpoint dialog, because it's much easier to create it by first using the Navigate > Go to Class menu (accelerator Ctrl+Shift+Minus), then scrolling to the line number you want — or using Navigate > Go to Line (accelerator Ctrl+G) — and finally clicking in the breakpoint margin at the left of the line you want to break on. This is equivalent to creating a new source breakpoint, but it means you don't have to type in the package, class, and line number by hand.

Method

A method in a given class is invoked.

The Method breakpoint is useful for setting breakpoints on a particular method you might have seen in the call stack while debugging a problem. If you have the source, you can set a source breakpoint wherever you want in that class, but this kind of breakpoint lets you stop in the debugger even when you don't have source for a class.

Class

Any method in a given class is invoked.

The Class breakpoint can be used when you might know the class involved in the problem, but not the exact method you want to stop on. This kind of breakpoint does not require source. The Browse button helps you quickly find the fully qualified class name you want to break on.

Watchpoint

A given field is accessed or modified.

The Watchpoint breakpoint can be used to find a problem if the code inside a class modifies a member field directly from several different places (instead of going through setter or getter methods each time). You can pause the debugger when any field is modified. You can create a breakpoint of this type by using the Toggle Watchpoint menu item on the context menu when pointing at a member field in your class's source.


30.7.6 How to Edit Breakpoints for Improved Control

After creating a Java code breakpoint you can edit the breakpoint in the Breakpoints window by right-clicking it and choosing Edit in the context menu.


Note:

You can use the Edit Breakpoint dialog to edit an ADF declarative breakpoint. However, you cannot edit some of the other information such as the information in the Definition tab. You can launch the Edit Breakpoint dialog by choosing Edit from the context menu in the Breakpoint window. For information about creating ADF declarative breakpoints, see Section 30.6, "Setting ADF Declarative Breakpoints".

Some of the features you can use by editing your breakpoint are:

  • Associate a logical "breakpoint group" name to group this breakpoint with others of the same group name. Breakpoint groups make it easy to enable/disable an entire set of breakpoints in one operation.

  • Associate a debugger action to a breakpoint when the breakpoint is hit. The default action is to stop the debugger so that you can inspect the application states, but you can add a sound alert, write information to a log file, and enable or disable group of breakpoints.

  • Associate a conditional expression with the breakpoint so that the debugger stops only when that condition is met. The expressions can be virtually any boolean expression, including:

    • expr ==value

    • expr.equals("value")

    • expr instanceof.fully.qualified.ClassName


    Note:

    Use the debugger Watches window to evaluate the expression first to make sure it's valid.

30.7.7 How to Filter Your View of Class Members

You can use the debugger to filter the members that are displayed in the debugger window for any class. In the debugger's Data window, selecting any item and choosing Preferences from the context menu brings up a dialog that lets you customize which members appear in the debugger and (more importantly sometimes) which members don't appear. You can filter by class type to simplify the amount of scrolling you need to do in the debugger Data window. This is especially useful when you might be interested only in a handful of a class's members.

30.7.8 How to Use Common Oracle ADF Breakpoints

If you loaded Oracle ADF source code, you can use the breakpoints listed in Table 30-9 to debug your application.

By looking at the Stack window when you hit these breakpoints, and stepping through the source, you can get a better idea of what's going on.

Table 30-9 Commonly Used ADF Breakpoints

Breakpoint Breakpoint Type Usage

oracle.jbo.JboException

Exception

This breakpoint useful for setting a breakpoint on the base class of all ADF Business Components runtime exceptions.

oracle.jbo.DMLException

Exception

This is the base class for exceptions originating from the database, like a failed DML operation due to an exception raised by a trigger or by a constraint violation.

doIt()

Method

You can also perform the same debugging function by setting an ADF declarative breakpoint on the page definition action binding. See Section 30.6.3, "How to Set and Use Page Definition Action Binding Breakpoints".

If you prefer to use this Java breakpoint, you can find it in the JUCtrlActionBinding class (oracle.jbo.uicli.binding package).

This is the method that will execute when any ADF action binding is invoked, and you can step into the logic and look at parameters if relevant.

oracle.jbo.server.ViewObjectImpl.executeQueryForCollection

Method

This is the method that will be called when a view object executes its SQL query.

oracle.jbo.server.ViewRowImpl.setAttributeInternal

Method

This is the method that will be called when any view row attribute is set.

oracle.jbo.server.EntityImpl.setAttributeInternal

Method

You can also perform the same debugging function by setting an ADF declarative breakpoint on the page definition attribute value binding. See Section 30.6.4, "How to Set and Use Page Definition Attribute Value Binding Breakpoints".

This is the method that will be called when any entity object attribute is set.


30.8 Regression Testing with JUnit

Testing your business services is an important part of your application development process. By creating a set of JUnit regression tests that exercise the functionality provided by your application module, you can ensure that new features, bug fixes, or refactorings do not destabilize your application. JDeveloper's integrated support for creating JUnit regression tests makes it easy test your application. Its integrated support for running JUnit tests means that any developer on the team can run the test suite with a single mouse click, greatly increasing the chances that every team member can run the tests to verify their own changes to the system. Furthermore, by using JDeveloper's integrated support for creating and running Apache Ant build scripts, you can easily incorporate running the tests into your automated build process as well. You can create a JUnit test for your application module, run it, and integrate the tests into an Ant build script.

JDeveloper provides the ability to generate JUnit test cases, test fixtures, and test suites. You can create test cases to test individual Java files containing single or multiple Java classes. You can create JUnit test fixtures that can be reused by JUnit test cases. You can group all these test cases into a JUnit test suite, which you can run together as a unit.

You can also use the JUnit BC4J Test Suite wizard to generate a test suite when there is an application module in the project. The wizard generates a test suite, test fixture, and a test case for each view object in the application module.

You can create a separate project to contain your regression tests or to integrate the test files into an existing project. If you are creating a Business Components test, you should create a separate project for testing.

Creating separate projects for testing has the following advantages:

If you are creating separate projects for JUnit testing, you should create directory structures that mirror the structure of the packages being tested. You may want to name the test classes using a naming convention that can easily identify the package being tested. For example, if you are testing myClass.java, you can name the test class myClassTest.java.

Although having separate projects has many advantages, in certain cases it may be easier to include the tests within the project. For example, the Fusion Order Demo application has a JUnit regression test suite in the FODCustomization workspace Customization Extension project.

You can use the Create Test wizards in the context of the project to create a JUnit test case, test fixture, or test suite. However, if you do not want to include these tests as part of the deployment, you may want to separate the tests out in their own project.


Tip:

If you don't see the Create Test wizards, use JDeveloper's Help > Check for Updates feature to install the JUnit Integration extension before continuing.

Each test case class contains a setUp() and tearDown() method that JUnit invokes to allow initializing resources required by the test case and to later clean them up. These test case methods invoke the corresponding setUp() and tearDown() methods to prepare and clean up the test fixture for each test case execution. Any time a test in the test case needs access to the application module, it uses the test fixture's getApplicationModule() method. The method returns the same application module instance, saved in a member field of the test fixture class, between the initial call to setUp() and the final call to tearDown() at the end of the test case.

JDeveloper supports JUnit 4, which allows annotations to be used instead of explicitly having to name the methods setUp() and tearDown().These annotations — @Before, @After — allow you to have multiple setup and teardown methods, including inherited ones if required.

The generated ExampleModuleConnectFixture is a JUnit test fixture that encapsulates the details of acquiring and releasing an application. It contains a setUp() method that uses the createRootApplicationModule() method of the Configuration class to create an instance of an application module. Its tearDown() method calls the matching releaseRootApplicationModule() method to release the application module instance.

Your own testing methods can use any of the programmatic APIs available in the oracle.jbo package to work with the application module and view object instances in its data model. You can also cast the ApplicationModule interface to a custom interface to have your tests invoke your custom service methods as part of their job. During each test, you will call one or more assertXxxx() methods provided by the JUnit framework to assert what the expected outcome of a particular expression should be. When you run the test suite, if any of the tests in any of the test cases contains assertions that fail, the JUnit Test Runner window displays the failing tests with a red failure icon.

The JUnit test generation wizard generates skeleton test case classes for each view object instance in the data model, each of which contains a single test method named testAccess(). This method contains a call to the assertNotNull() method to test that the view object instance exists.

// In ViewInstanceNameTest.java test case class
  public void testSomeMeaningfulName() {
  // test assertions here
  }

Each generated test case can contain one or more test methods that the JUnit framework will execute as part of executing that test case. You can add a test to the test case simply by creating a public void method in the class whose name begins with the prefix test or use the annotation @Test.

30.8.1 How to Obtain the JUnit Extension

JUnit must be loaded as an extension to JDeveloper before it becomes available and appears in the menu system.

To load the JUnit extension:

  1. From the main menu, choose Help > Check for Updates.

  2. In the Source page of the Check for Updates dialog, select Search Update Centers and Official Oracle Extensions and Updates and click Next.

  3. In the Updates page, select JUnit Integration and click Next, as shown in Figure 30-35.

    Figure 30-35 Check for Updates Dialog for Adding JUnit Extension

    Check for Update dialog for JUnit extension.
  4. On the License Agreements page, click I Accept and click Finish.

30.8.2 How to Create a JUnit Test Case

Before you create a JUnit test case, you must have created a project that is to be tested.

To generate a JUnit test case:

  1. In the Application Navigator, select the project you want to generate a test case for, right-click and select New.

  2. In the New Gallery, expand General, select Unit Tests(JUnit) and then Test Case, and click OK.

  3. In the Select the Class to Test page of the Create Test Case dialog, enter the class under test or click Browse.

  4. In the Class Browser dialog, locate the class you want to test or enter the beginning letters in the Match Class Name field. The Match Class list will be filtered for easier identification.

    For example, entering FOD filters the list down to three items, as shown in Figure 30-36.

    Figure 30-36 Class Browser for Selecting Class Files to Test

    JUnit Class Browser.

    Select the class and click OK to close the dialog. Click Next.

  5. Select the individual methods you want to test, and click Next.

    For example, in Figure 30-37, the four methods that are checked are to be tested.

    Figure 30-37 Create Test Case Dialog for Selecting Methods to Test

    Create Test Case in JUnit tests.
  6. In the Setup Test Case Class page, enter the name of the test case, the package, and the class it extends and select the list of built-in functions JUnit will create stubs for. Click Next.

    For example, in Figure 30-38, JUnit will create a stub for the setUp() method for the FodCompanyCustomizationLayerTest test case in the oracle.fodemo.customization package.

    Figure 30-38 Create Test Case Dialog for Setting up Class to Test

    Setting up test case.
  7. In the Select Test Fixtures page, select any test fixtures you want to add to the test case or click Browse.

  8. Make sure that all the test fixtures you want to add to the test case are selected in the list and click Finish.

30.8.3 How to Create a JUnit Test Fixture

You should create a JUnit test fixture if you require more than one test for a class or method. A JUnit text fixture allows you to avoid duplicating test code that is needed to initialize testing.

To generate a JUnit test fixture:

  1. In the Application Navigator, select the project you want to generate a test fixture for, right-click and select New.

  2. In the New Gallery, expand General, select Unit Tests(JUnit) and then Test Fixture, and click OK.

  3. Select Test Fixture and click OK.

  4. In the Create Test Fixture dialog, enter the name of the test fixture, the package, and any class it extends.

  5. Click OK.

30.8.4 How to Create a JUnit Test Suite

Before you create a JUnit test suite, you should have already created JUnit test cases that can be added to the test suite.

To generate a JUnit test suite:

  1. In the Application Navigator, select the project you want to generate a test fixture for, right-click and select New.

  2. In the New Gallery, expand General, select General and then Test Suite, and click OK.

  3. In the Setup Test Suite Class page of the Create Test Suite dialog, enter the name of the test suite, the package, and the class it extends. Click Next.

    For example, in Figure 30-39, an AllTests test suite is created that extends the java.lang.Object class.

    Figure 30-39 Create Test Suite Wizard

    Create Test Suite dialog.
  4. In the Select Test Cases page of the Create Test Suite dialog, check that all the test cases you want included in the test suite have been selected. The test cases you have created will populate the list. Deselect any test cases that you do not want included. Click Finish.

    For example, in Figure 30-40, both test cases are selected to be in the test suite.

    Figure 30-40 Selecting Test Cases for a Test Suite

    Select Test cases for Test Suite.

30.8.5 How to Create a Business Components Test Suite

Before you create Business Components tests, you should have created application modules in the project.

The test fixture that is created is a singleton class to reduce the number of connections. If you want to connect or disconnect for each test case, customize the test case using the JUnit 4 annotations @Before and @After.

The JUnit BC4J Test Suite wizard will generate tests for each view object in the application module. If the application module does not have exported methods, the wizard will also generate a test for the application module itself. A generated view object class has the format view_objectVOTest.java and is placed into a package with the format package.view.viewobjectVO, where package is the application module package. A generated application module test has the format application_moduleAMTest.java and is placed into a package with the format package.applicationModule. A generated test fixture class has the format applicationmoduleAMFixture.java and is placed in the same package as the application module test.

The generated all test suite class has the format AllapplicationmoduleTest.java and is placed into the package with the same name as the application module package name.

A test case XML file is also generated for each application module or view object test. The XML file contains test methods defined in the application module or view object test cases. It does not include the test methods from the base classes (if any) because there may be too many duplicates.

For instance, after you created a test suite for an application module named StoreAAppModule with view objects Employees1View1 and Employees1View2 in the package StoreAPack, the Application Navigator displays the test hierarchy as shown in Figure 30-10.

Figure 30-41 Business Components Test Suite in Application Navigator

Business Components Test Suite in Application Navigator

To create a Business Components test suite:

  1. In the Application Navigator, click New.

    You will create a separate project for the Business Components tests.

  2. In the New Gallery, expand General, select Projects, then Java Projects, and click OK.

  3. In the Project Name page of the Create Java Project wizard, enter a name and the directory path for the test project, and click Next.

  4. In the Project Java Settings page, enter the package name, the directory of the Java source code in your project, and output directory where output class files will be placed, and click Finish.

  5. In the Application Navigator, double-click the application module you want to test.

  6. In the overview editor, select the Java tab and click the Edit icon in the Java Class section.

  7. In the Select Java Options dialog, select Generate Application Module Class and click OK.

  8. In the overview editor Java tab, click the Edit icon in the Class Interface section.

  9. In the Edit Client Interface dialog, shuttle the methods you want to test to the Selected pane, and click OK.

  10. In the Application Navigator, right-click the test project you have created and choose New.

  11. In the New Gallery, expand General, select Unit Tests and then Business Components Test Suite, and click OK.

  12. In the Configure Tests page of the JUnit BC4J Test Suite wizard, select values for the following and click Next:

    • Business Component Project: Select the project that has the application module you want to test.

    • Application Module: Select the application module you want to test.

    • Configuration: Choose a local or shared application module.

    • Test Base Class-Application Module Extends: You can specify different base cases. The generated test case classes will extend from that base class where all public abstract methods in the base class will have simple and default implementation method bodies.

    • Test Base Class-View Object Extends: You can specify which class the view object extends. The generated test case classes will extend from that base class where all public abstract methods in the base class will have simple and default implementation method bodies.

  13. In the Summary page, verify the selections and click Finish.

30.8.6 How to a Create Business Component Test Fixture

When you create a Business Components test suite, a Business Components test fixture is created with it. You can also create Business Components test fixtures independently.

Before you create Business Components tests, you should have created application modules in the project.

A generated test fixture class has the format applicationmoduleAMFixture.java and put into a package with the format package.applicationModule, where package is the application module package.

To create a Business Components test fixture:

  1. In the Application Navigator, click New.

    You will create a separate project for the Business Components tests.

  2. In the New Gallery, expand General, select Projects and then select Java Projects, and click OK.

  3. In the Project Name page of the Create Java Project dialog, enter a name and the directory path for the test project, and click Next.

  4. In the Project Java Settings page, enter the package name and the source and output directories, and click Finish.

  5. In the Application Navigator, double-click the application module you want to test.

  6. In the overview editor, select the Java tab and click the Edit icon of the Java Class section.

  7. In the Select Java Options dialog, select Generate Application Module Class, and click OK.

  8. In the overview editor Java tab, click the Edit icon of the Class Interface section.

  9. In the Edit Client Interface dialog, shuttle the methods you want to test to the Selected pane, and click OK.

  10. In the Application Navigator, right-click the test project you have created and choose New.

  11. In the New Gallery, expand General, select Unit Tests and then Business Components Test Fixture, and click OK.

  12. In the Configure Tests page of the JUnit BC4J Test Fixture wizard, select values for the following and click Next:

    • Business Component Project: Select the project that has the application module you want to test.

    • Application Module: Select the application module you want to test.

    • Configuration: Choose a local or shared application module.

  13. In the Summary page, verify the test fixture class and click Finish.

30.8.7 How to Run a JUnit Test Suite as Part of an Ant Build Script

Apache Ant is a popular, cross-platform build utility for which JDeveloper offers design time support. You can incorporate the automatic execution of JUnit tests and test output report generation by using Ant's built-in junit and junitreport tasks. Example 30-3 shows a task called tests from the FODCustomizations Ant build.xml file in the CustomizationExtension project. It depends on the build and buildTests targets that Ant ensures have been executed before running the tests target.

Example 30-3 Ant Build Target Runs JUnit Test Suite

  <target name="testCustomizations" depends="compileExtensionClasses">
    <junit printsummary="yes" haltonfailure="yes">
      <classpath refid="customization.classpath">
        <pathelement location="${customization.build.dir}"/>
      </classpath>
      <formatter type="plain"/>
      <test name="oracle.fodemo.customization.tests.AllTests"/>
    </junit>
  </target>

The junit tag contains a nested test tag that identifies the test suite class to execute and specifies a directory in which to report the results. The junitreport tag allows you to format the test results into a collection of HTML pages that resemble the format of Javadoc.

To try running the JUnit test from Ant, select the build.xml file in the Application Navigator, and choose Run Ant Target > tests from the context menu.