chromium/chrome/browser/extensions/api/feedback_private/feedback_browsertest.cc

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

#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/apps/platform_apps/app_browsertest_util.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/devtools/devtools_window_testing.h"
#include "chrome/browser/extensions/component_loader.h"
#include "chrome/browser/extensions/extension_browsertest.h"
#include "chrome/browser/feedback/feedback_dialog_utils.h"
#include "chrome/browser/feedback/feedback_uploader_chrome.h"
#include "chrome/browser/feedback/feedback_uploader_factory_chrome.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/common/extensions/extension_constants.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "content/public/common/content_switches.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/test_utils.h"
#include "extensions/browser/api/feedback_private/feedback_private_api.h"
#include "extensions/browser/app_window/app_window.h"
#include "extensions/browser/app_window/app_window_registry.h"
#include "extensions/browser/event_router.h"
#include "extensions/browser/extension_system.h"
#include "extensions/common/api/feedback_private.h"

FeedbackFlow;

namespace extensions {

// TODO(http://b/230376167): Remove or migrate the tests to work with WebUI
// Feedback.
class FeedbackTest : public ExtensionBrowserTest {};

class TestFeedbackUploaderDelegate
    : public feedback::FeedbackUploaderChrome::Delegate {};

// TODO(crbug.com/40194697): disable tests.
IN_PROC_BROWSER_TEST_F(FeedbackTest, DISABLED_ShowFeedback) {}

// TODO(crbug.com/40194697): disable tests.
IN_PROC_BROWSER_TEST_F(FeedbackTest, DISABLED_ShowLoginFeedback) {}

// Tests that there's an option in the email drop down box with a value ''.
// TODO(crbug.com/40194697): disable tests.
IN_PROC_BROWSER_TEST_F(FeedbackTest, DISABLED_AnonymousUser) {}

// Ensures that when extra diagnostics are provided with feedback, they are
// injected properly in the system information.
// TODO(crbug.com/40194697): disable tests.
IN_PROC_BROWSER_TEST_F(FeedbackTest, DISABLED_ExtraDiagnostics) {}

// Ensures that when triggered from Assistant with Google account, Assistant
// checkbox are not hidden.
// Disabled due to flake: https://crbug.com/1240591
IN_PROC_BROWSER_TEST_F(FeedbackTest, DISABLED_ShowFeedbackFromAssistant) {}

#if BUILDFLAG(IS_CHROMEOS_ASH)
// Ensures that when triggered from a Google account and a Bluetooth related
// string is entered into the description, that we provide the option for
// uploading Bluetooth logs as well.
IN_PROC_BROWSER_TEST_F(FeedbackTest, DISABLED_ProvideBluetoothLogs) {
  WaitForExtensionViewsToLoad();

  ASSERT_TRUE(IsFeedbackAppAvailable());
  StartFeedbackUI(FeedbackFlow::kGoogleInternal, std::string(),
                  /*from_assistant*/ false, /*include_bluetooth_logs*/ true);
  VerifyFeedbackAppLaunch();

  AppWindow* const window =
      PlatformAppBrowserTest::GetFirstAppWindowForBrowser(browser());
  ASSERT_TRUE(window);
  content::WebContents* const content = window->web_contents();

  // It shouldn't be visible until we put the Bluetooth text into the
  // description.
  EXPECT_EQ(true,
            content::EvalJs(
                content,
                "((function() {"
                "    if ($('bluetooth-checkbox-container') != null &&"
                "        $('bluetooth-checkbox-container').hidden == true) {"
                "      return true;"
                "    }"
                "    return false;"
                "  })());"));
  EXPECT_EQ(true,
            content::EvalJs(
                content,
                "((function() {"
                "    var elem = document.getElementById('description-text');"
                "    elem.value = 'bluetooth';"
                "    elem.dispatchEvent(new Event('input', {}));"
                "    if ($('bluetooth-checkbox-container') != null &&"
                "        $('bluetooth-checkbox-container').hidden == false) {"
                "      return true;"
                "    }"
                "    return false;"
                "  })());"));
}

// Ensures that when triggered from a Google account and a Bluetooth related
// string is entered into the description, that we append Bluetooth-related
// questions to the issue description.
IN_PROC_BROWSER_TEST_F(FeedbackTest, DISABLED_AppendQuestionnaire) {
  WaitForExtensionViewsToLoad();

  ASSERT_TRUE(IsFeedbackAppAvailable());
  StartFeedbackUI(FeedbackFlow::kGoogleInternal, std::string(),
                  /*from_assistant*/ false, /*include_bluetooth_logs*/ true,
                  /*show_questionnaire*/ true);
  VerifyFeedbackAppLaunch();

  AppWindow* const window =
      PlatformAppBrowserTest::GetFirstAppWindowForBrowser(browser());
  ASSERT_TRUE(window);
  content::WebContents* const content = window->web_contents();

  // Questionnaire shouldn't be visible until we put the Bluetooth text into the
  // description.
  EXPECT_EQ(
      true,
      content::EvalJs(
          content,
          "((function() {"
          "    return !$('description-text').value.includes('please answer');"
          "  })());"));

  // Bluetooth questions should appear.
  EXPECT_EQ(true,
            content::EvalJs(
                content,
                "((function() {"
                "    var elem = document.getElementById('description-text');"
                "    elem.value = 'bluetooth';"
                "    elem.dispatchEvent(new Event('input', {}));"
                "    return elem.value.includes('please answer')"
                "        && elem.value.includes('[Bluetooth]')"
                "        && !elem.value.includes('[WiFi]');"
                "  })());"));

  // WiFi questions should appear.
  EXPECT_EQ(true,
            content::EvalJs(
                content,
                "((function() {"
                "    var elem = document.getElementById('description-text');"
                "    elem.value = 'wifi issue';"
                "    elem.dispatchEvent(new Event('input', {}));"
                "    return elem.value.includes('[WiFi]');"
                "  })());"));
}

// Questionnaires should not be displayed if it's not a Googler session.
IN_PROC_BROWSER_TEST_F(FeedbackTest, DISABLED_AppendQuestionnaireNotGoogler) {
  WaitForExtensionViewsToLoad();

  ASSERT_TRUE(IsFeedbackAppAvailable());
  StartFeedbackUI(FeedbackFlow::kRegular, std::string(),
                  /*from_assistant*/ false, /*include_bluetooth_logs*/ false,
                  /*show_questionnaire*/ false);
  VerifyFeedbackAppLaunch();

  AppWindow* const window =
      PlatformAppBrowserTest::GetFirstAppWindowForBrowser(browser());
  ASSERT_TRUE(window);
  content::WebContents* const content = window->web_contents();

  // Questionnaire shouldn't be visible in the beginning.
  EXPECT_EQ(
      true,
      content::EvalJs(
          content,
          "((function() {"
          "    return !$('description-text').value.includes('[Bluetooth]');"
          "  })()));"));

  // Questionnaire should not appear even with a Bluetooth keyword.
  EXPECT_EQ(true,
            content::EvalJs(
                content,
                "((function() {"
                "    var elem = document.getElementById('description-text');"
                "    elem.value = 'bluetooth';"
                "    elem.dispatchEvent(new Event('input', {}));"
                "    return !elem.value.includes('please answer');"
                "  })());"));
}
#endif  // BUILDFLAG(IS_CHROMEOS_ASH)

// Disabled due to flake: https://crbug.com/1069870
IN_PROC_BROWSER_TEST_F(FeedbackTest, DISABLED_GetTargetTabUrl) {}

// Disabled due to flake: https://crbug.com/1180373
IN_PROC_BROWSER_TEST_F(FeedbackTest, DISABLED_SubmissionTest) {}

}  // namespace extensions