Uploaded image for project: 'Wicket'
  1. Wicket
  2. WICKET-3977

Calling FormTester.select for DropDownChoice invokes onSelectionChanged with null argument

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 1.5-RC5.1
    • 1.5.1
    • wicket
    • None
    • Linux Ubuntu 11.04, Java 1.6.0_26

    Description

      I have a DropDownChoice which has a wantOnSelectionChangedNotifications that returns true, so that the onSelectionChanged is called when the selection changes.

      In a unit test a selection is made for the dropdown using: formTester.select("dropDown", 0);

      The FormTester sets the selected value for the dropdown as a post parameter in the current request and the calls BaseWicketTester#executeListener to process the request for the onSelectionChanged event.

      In BaseWicketTester#executeListener however the the request post parameters previously set are ignored, by creating a new empty request:
      MockHttpServletRequest request = new MockHttpServletRequest(application, httpSession, servletContext);

      I guess either the current request should be used instead of new-ing one or the post parameters should be copied from the current request instance.

      Attachments

        1. wicket3977.zip
          2 kB
          Marcel Cullens

        Activity

          People

            ivaynberg Igor Vaynberg
            marcelc Marcel Cullens
            Votes:
            1 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: