#!/usr/bin/env python
"""Tests acl policies when approvals system is disabled."""

from absl import app

from grr_response_server.gui import api_auth_manager
from grr_response_server.gui import gui_test_lib
from grr.test_lib import test_lib


class TestWorkflowWithoutApprovals(gui_test_lib.GRRSeleniumTest):
  """Tests acl policies when approvals system is not used."""

  def setUp(self):
    super().setUp()
    self.client_id = self.SetupClient(0)

  def InstallACLChecks(self):
    # This class purposefully does not install ACL checks.
    api_auth_manager.InitializeApiAuthManager()

  def testHostInformationDoesNotAskForApproval(self):
    self.Open("/legacy#/clients/%s" % self.client_id)

    # Make sure "Host Information" tab got shown.
    self.WaitUntil(self.IsTextPresent, "Last Local Clock")
    self.WaitUntil(self.IsTextPresent, "GRR Client Version")

    self.WaitUntilNot(
        self.IsElementPresent, "css=h3:contains('Create a new approval')"
    )

  def testBrowseVirtualFileSystemDoesNotAskForApproval(self):
    self.Open("/legacy#/clients/%s" % self.client_id)

    # Clicking on the navigator link explicitly to make sure it's not disabled.
    self.Click("css=a[grrtarget='client.vfs']")

    # Make sure "Browse Virtual Filesystem" pane is displayed.
    self.WaitUntil(
        self.IsTextPresent,
        "Please select a file or a folder to see its details here.",
    )

    self.WaitUntilNot(
        self.IsElementPresent, "css=h3:contains('Create a new approval')"
    )

  def testStartFlowDoesNotAskForApproval(self):
    self.Open("/legacy#/clients/%s" % self.client_id)

    # Clicking on the navigator link explicitly to make sure it's not disabled.
    self.Click("css=a[grrtarget='client.launchFlows']")

    # Make sure "Start new flows" pane is displayed.
    self.WaitUntil(self.IsTextPresent, "Please Select a flow to launch")

    self.WaitUntilNot(
        self.IsElementPresent, "css=h3:contains('Create a new approval')"
    )

  def testManageLaunchedFlowsDoesNotAskForApproval(self):
    self.Open("/legacy#/clients/%s" % self.client_id)

    # Clicking on the navigator link explicitly to make sure it's not disabled.
    self.Click("css=a[grrtarget='client.flows']")

    # Make sure "Manage launched flows" pane is displayed.
    self.WaitUntil(
        self.IsTextPresent, "Please select a flow to see its details here."
    )

    self.WaitUntilNot(
        self.IsElementPresent, "css=h3:contains('Create a new approval')"
    )


if __name__ == "__main__":
  app.run(test_lib.main)
