2018-08-01 00:01:03 -05:00
use wasm_bindgen ::prelude ::* ;
2018-09-26 08:26:00 -07:00
use wasm_bindgen_test ::* ;
2018-08-01 00:01:03 -05:00
use web_sys ::HtmlSelectElement ;
2019-02-26 08:33:14 -08:00
#[ wasm_bindgen(module = " /tests/wasm/element.js " ) ]
2018-09-26 08:26:00 -07:00
extern " C " {
2018-08-01 00:01:03 -05:00
fn new_select_with_food_opts ( ) -> HtmlSelectElement ;
}
#[ wasm_bindgen_test ]
fn test_select_element ( ) {
// Creates a select with four options. Options are ["tomato", "potato", "orange", "apple"], where
// the string is the .value and .text of each option.
let select = new_select_with_food_opts ( ) ;
select . set_autofocus ( true ) ;
2018-09-26 08:26:00 -07:00
assert_eq! (
select . autofocus ( ) ,
true ,
" Select element should have a true autofocus property. "
) ;
2018-08-01 00:01:03 -05:00
select . set_autofocus ( false ) ;
2018-09-26 08:26:00 -07:00
assert_eq! (
select . autofocus ( ) ,
false ,
" Select element should have a false autofocus property. "
) ;
2018-08-01 00:01:03 -05:00
2018-09-26 08:26:00 -07:00
// TODO: This test currently fails on Firefox, but not Chrome. In Firefox, even though we select.set_autocomplete(), select.autocomplete() yields an empty String.
// select.set_autocomplete("tomato");
// assert_eq!(select.autocomplete(), "tomato", "Select element should have a 'tomato' autocomplete property.");
2018-08-01 00:01:03 -05:00
select . set_disabled ( true ) ;
2018-09-26 08:26:00 -07:00
assert_eq! (
select . disabled ( ) ,
true ,
" Select element should be disabled. "
) ;
2018-08-01 00:01:03 -05:00
select . set_disabled ( false ) ;
2018-09-26 08:26:00 -07:00
assert_eq! (
select . disabled ( ) ,
false ,
" Select element should not be disabled. "
) ;
2018-08-01 00:01:03 -05:00
2018-09-26 08:26:00 -07:00
assert! (
select . form ( ) . is_none ( ) ,
" Select should not be associated with a form. "
) ;
2018-08-01 00:01:03 -05:00
select . set_multiple ( false ) ;
2018-09-26 08:26:00 -07:00
assert_eq! (
select . multiple ( ) ,
false ,
" Select element should have a false multiple property. "
) ;
2018-08-01 00:01:03 -05:00
select . set_multiple ( true ) ;
2018-09-26 08:26:00 -07:00
assert_eq! (
select . multiple ( ) ,
true ,
" Select element should have a true multiple property. "
) ;
2018-08-01 00:01:03 -05:00
select . set_name ( " potato " ) ;
2018-09-26 08:26:00 -07:00
assert_eq! (
select . name ( ) ,
" potato " ,
" Select element should have a name property of 'potato'. "
) ;
2018-08-01 00:01:03 -05:00
select . set_required ( true ) ;
2018-09-26 08:26:00 -07:00
assert_eq! (
select . required ( ) ,
true ,
" Select element should be required. "
) ;
2018-08-01 00:01:03 -05:00
select . set_required ( false ) ;
2018-09-26 08:26:00 -07:00
assert_eq! (
select . required ( ) ,
false ,
" Select element should not be required. "
) ;
2018-08-01 00:01:03 -05:00
select . set_size ( 432 ) ;
2018-09-26 08:26:00 -07:00
assert_eq! (
select . size ( ) ,
432 ,
" Select element should have a size property of 432. "
) ;
2018-08-01 00:01:03 -05:00
// Default type seems to be "select-multiple" for the browsers I tested, but there's no guarantee
// on this, so let's just make sure we get back something here.
2018-09-26 08:26:00 -07:00
assert! (
select . type_ ( ) . len ( ) > 0 ,
" Select element should have some type. "
) ;
2018-08-01 00:01:03 -05:00
2018-09-26 08:26:00 -07:00
assert! (
select . options ( ) . length ( ) = = 4 ,
" Select element should have four options. "
) ;
2018-08-01 00:01:03 -05:00
select . set_length ( 12 ) ;
2018-09-26 08:26:00 -07:00
assert_eq! (
select . length ( ) ,
12 ,
" Select element should have a length of 12. "
) ;
2018-08-01 00:01:03 -05:00
// Reset the length to four, as that's how many options we actually have.
select . set_length ( 4 ) ;
2018-09-26 08:26:00 -07:00
assert! (
select
. named_item ( " this should definitely find nothing " )
. is_none ( ) ,
" Shouldn't be able to find a named item with the given string. "
) ;
2018-08-01 00:01:03 -05:00
2018-09-26 08:26:00 -07:00
assert! (
select . selected_options ( ) . length ( ) = = 1 ,
" One option should be selected by default, just by way of having items. "
) ;
2018-08-01 00:01:03 -05:00
select . set_selected_index ( 2 ) ;
2018-09-26 08:26:00 -07:00
assert_eq! (
select . selected_index ( ) ,
2 ,
" Select element should have a selected index of 2. "
) ;
2018-08-01 00:01:03 -05:00
// Quote from docs: The value property sets or returns the value of the selected option in a drop-down list.
select . set_value ( " tomato " ) ; // Select the "tomato" option
2018-09-26 08:26:00 -07:00
assert_eq! (
select . value ( ) ,
" tomato " ,
" Select element should have no selected value. "
) ;
2018-08-01 00:01:03 -05:00
// This might be browser dependent, potentially rendering this test useless? Worked fine in Chrome and Firefox for now.
2018-09-26 08:26:00 -07:00
assert_eq! (
select . will_validate ( ) ,
true ,
" Select element should not validate by default. "
) ;
assert! (
select . validation_message ( ) . is_ok ( ) ,
" Select element should retrieve a validation message. "
) ;
assert! (
select . validity ( ) . valid ( ) ,
" Our basic select should be valid. "
) ;
assert! (
select . check_validity ( ) ,
" Our basic select should check out as valid. "
) ;
assert! (
select . report_validity ( ) ,
" Our basic select should report valid. "
) ;
2018-08-01 00:01:03 -05:00
select . set_custom_validity ( " Some custom validity error. " ) ;
2018-09-26 08:26:00 -07:00
assert! (
select . labels ( ) . length ( ) = = 0 ,
" There should be no labels associated with our select element. "
) ;
2018-08-01 00:01:03 -05:00
// TODO: This test won't work until this bug is fixed: https://www.w3.org/Bugs/Public/show_bug.cgi?id=20720. Sometime in the future, either remove this test or uncomment after bug is fixed.
// assert!(select.named_item("tomato").is_some(), "Should be able to find the 'tomato' option before removing it.");
// select.remove(0);
// assert!(select.named_item("tomato").is_none(), "Shouldn't be able to find the 'tomato' option after removing it.")
// TODO: As a result, we are missing a test for the remove() method.
2018-09-26 08:26:00 -07:00
}