chromium/third_party/blink/web_tests/http/tests/devtools/search/search-in-non-existing-resource.js

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import {TestRunner} from 'test_runner';
import {ApplicationTestRunner} from 'application_test_runner';
import {SourcesTestRunner} from 'sources_test_runner';

import * as BindingsModule from 'devtools/models/bindings/bindings.js';

(async function() {
  TestRunner.addResult(
      `Tests single resource search in inspector page agent with non existing resource url does not cause a crash.\n`);
  await TestRunner.showPanel('sources');
  await TestRunner.addIframe('resources/search.html');
  await TestRunner

  // This file should not match search query.
  var text = 'searchTest' +
      'UniqueString';
  ApplicationTestRunner.runAfterResourcesAreFinished(['search.js'], step2);

  async function step2() {
    var resource = BindingsModule.ResourceUtils.resourceForURL('http://127.0.0.1:8000/devtools/search/resources/search.js');
    var url = 'http://127.0.0.1:8000/devtools/search/resources/non-existing.js';
    var response = await TestRunner.PageAgent.invoke_searchInResource({frameId: resource.frameId, url, query: text});
    TestRunner.addResult(response.getError());
    TestRunner.completeTest();
  }
})();