import { acceptance, logIn } from "helpers/qunit-helpers"; acceptance("Search"); QUnit.test("search", (assert) => { visit("/"); click('#search-button'); andThen(() => { assert.ok(exists('#search-term'), 'it shows the search bar'); assert.ok(!exists('.search-menu .results ul li'), 'no results by default'); }); fillIn('#search-term', 'dev'); keyEvent('#search-term', 'keyup', 16); andThen(() => { assert.ok(exists('.search-menu .results ul li'), 'it shows results'); }); click('.show-help'); andThen(() => { assert.equal(find('.full-page-search').val(), 'dev', 'it shows the search term'); assert.ok(exists('.search-advanced-options'), 'advanced search is expanded'); }); }); QUnit.test("search for a tag", (assert) => { visit("/"); click('#search-button'); fillIn('#search-term', 'evil'); keyEvent('#search-term', 'keyup', 16); andThen(() => { assert.ok(exists('.search-menu .results ul li'), 'it shows results'); }); }); QUnit.test("search scope checkbox", assert => { visit("/c/bug"); click('#search-button'); andThen(() => { assert.ok(exists('.search-context input:checked'), 'scope to category checkbox is checked'); }); click('#search-button'); visit("/t/internationalization-localization/280"); click('#search-button'); andThen(() => { assert.not(exists('.search-context input:checked'), 'scope to topic checkbox is not checked'); }); click('#search-button'); visit("/u/eviltrout"); click('#search-button'); andThen(() => { assert.ok(exists('.search-context input:checked'), 'scope to user checkbox is checked'); }); }); QUnit.test("Search with context", assert => { visit("/t/internationalization-localization/280/1"); click('#search-button'); fillIn('#search-term', 'dev'); click(".search-context input[type='checkbox']"); keyEvent('#search-term', 'keyup', 16); andThen(() => { assert.ok(exists('.search-menu .results ul li'), 'it shows results'); }); visit("/"); click('#search-button'); andThen(() => { assert.ok(!exists(".search-context input[type='checkbox']")); }); visit("/t/internationalization-localization/280/1"); click('#search-button'); andThen(() => { assert.ok(!$('.search-context input[type=checkbox]').is(":checked")); }); }); QUnit.test("Right filters are shown to anonymous users", assert => { visit("/search?expanded=true"); andThen(() => { assert.ok(exists('select#in option[value=first]')); assert.ok(exists('select#in option[value=pinned]')); assert.ok(exists('select#in option[value=unpinned]')); assert.ok(exists('select#in option[value=wiki]')); assert.ok(exists('select#in option[value=images]')); assert.notOk(exists('select#in option[value=unseen]')); assert.notOk(exists('select#in option[value=posted]')); assert.notOk(exists('select#in option[value=watching]')); assert.notOk(exists('select#in option[value=tracking]')); assert.notOk(exists('select#in option[value=bookmarks]')); assert.notOk(exists('.search-advanced-options .in-likes')); assert.notOk(exists('.search-advanced-options .in-private')); assert.notOk(exists('.search-advanced-options .in-seen')); }); }); QUnit.test("Right filters are shown to logged-in users", assert => { logIn(); Discourse.reset(); visit("/search?expanded=true"); andThen(() => { assert.ok(exists('select#in option[value=first]')); assert.ok(exists('select#in option[value=pinned]')); assert.ok(exists('select#in option[value=unpinned]')); assert.ok(exists('select#in option[value=wiki]')); assert.ok(exists('select#in option[value=images]')); assert.ok(exists('select#in option[value=unseen]')); assert.ok(exists('select#in option[value=posted]')); assert.ok(exists('select#in option[value=watching]')); assert.ok(exists('select#in option[value=tracking]')); assert.ok(exists('select#in option[value=bookmarks]')); assert.ok(exists('.search-advanced-options .in-likes')); assert.ok(exists('.search-advanced-options .in-private')); assert.ok(exists('.search-advanced-options .in-seen')); }); });