blob: 8bb14e596094be1d4848646e5af330b5620a5736 [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package policy
import (
"context"
"time"
"chromiumos/tast/common/policy"
"chromiumos/tast/local/apps"
"chromiumos/tast/local/chrome/ui"
"chromiumos/tast/local/chrome/uiauto/faillog"
"chromiumos/tast/local/policyutil"
"chromiumos/tast/local/policyutil/fixtures"
"chromiumos/tast/testing"
)
func init() {
testing.AddTest(&testing.Test{
Func: SystemTimezoneAutomaticDetection,
Desc: "Check of SystemTimezoneAutomaticDetection policy by checking the settings page",
Contacts: []string{
"vsavu@google.com", // Test author
"chromeos-commercial-stability@google.com",
},
Attr: []string{"group:mainline", "informational"},
SoftwareDeps: []string{"chrome"},
Fixture: "chromeEnrolledLoggedIn",
})
}
func SystemTimezoneAutomaticDetection(ctx context.Context, s *testing.State) {
cr := s.FixtValue().(*fixtures.FixtData).Chrome
fdms := s.FixtValue().(*fixtures.FixtData).FakeDMS
// Connect to Test API to use it with the UI library.
tconn, err := cr.TestAPIConn(ctx)
if err != nil {
s.Fatal("Failed to create Test API connection: ", err)
}
for _, param := range []struct {
// name is the subtest name.
name string
// value is the policy value.
value *policy.SystemTimezoneAutomaticDetection
// wantRestriction indicates whether the setting can be changed by the user.
wantRestriction ui.RestrictionState
// selectedOption is the selected state for timezone detection.
selectedOption string
// selectedDetection is the state for timezone detection.
selectedDetection string
}{
{
name: "all",
value: &policy.SystemTimezoneAutomaticDetection{Val: 4},
wantRestriction: ui.RestrictionDisabled,
selectedOption: "Set automatically",
selectedDetection: "Use Wi-Fi or mobile networks to determine location",
},
{
name: "wifi",
value: &policy.SystemTimezoneAutomaticDetection{Val: 3},
wantRestriction: ui.RestrictionDisabled,
selectedOption: "Set automatically",
selectedDetection: "Use only Wi-Fi to determine location",
},
{
name: "ip",
value: &policy.SystemTimezoneAutomaticDetection{Val: 2},
wantRestriction: ui.RestrictionDisabled,
selectedOption: "Set automatically",
selectedDetection: "Use your IP address to determine location (default)",
},
{
name: "never",
value: &policy.SystemTimezoneAutomaticDetection{Val: 1},
wantRestriction: ui.RestrictionDisabled,
selectedOption: "Choose from list",
selectedDetection: "Automatic time zone detection is disabled",
},
{
name: "user",
value: &policy.SystemTimezoneAutomaticDetection{Val: 0},
wantRestriction: ui.RestrictionNone,
selectedOption: "Set automatically",
selectedDetection: "Use your IP address to determine location (default)",
},
} {
s.Run(ctx, param.name, func(ctx context.Context, s *testing.State) {
defer faillog.DumpUITreeWithScreenshotOnError(ctx, s.OutDir(), s.HasError, cr, "ui_tree_"+param.name)
// Perform cleanup.
if err := policyutil.ResetChrome(ctx, fdms, cr); err != nil {
s.Fatal("Failed to clean up: ", err)
}
// Update policies.
if err := policyutil.ServeAndVerify(ctx, fdms, cr, []policy.Policy{param.value}); err != nil {
s.Fatal("Failed to update policies: ", err)
}
// Open the timezone settings page.
conn, err := apps.LaunchOSSettings(ctx, cr, "chrome://os-settings/dateTime/timeZone")
if err != nil {
s.Fatal("Failed to connect to the settings page: ", err)
}
defer conn.Close()
// Find the radio group node.
rgNode, err := ui.FindWithTimeout(ctx, tconn, ui.FindParams{Role: ui.RoleTypeRadioGroup}, 15*time.Second)
if err != nil {
s.Fatal("Finding radio group failed: ", err)
}
defer rgNode.Release(ctx)
// Find the selected radio button under the radio group.
srbNode, err := rgNode.FindSelectedRadioButton(ctx)
if err != nil {
s.Fatal("Finding the selected radio button failed: ", err)
}
defer srbNode.Release(ctx)
if err := policyutil.CheckNodeAttributes(srbNode, ui.FindParams{
Attributes: map[string]interface{}{
"restriction": param.wantRestriction,
"name": param.selectedOption,
},
}); err != nil {
s.Error("Unexpected settings state: ", err)
}
// Check the currently selected detection mode.
text, err := ui.FindWithTimeout(ctx, tconn, ui.FindParams{
Name: "Time zone detection method",
}, 15*time.Second)
if err != nil {
s.Fatal("Could not find current detection mode: ", err)
}
defer text.Release(ctx)
if text.Value != param.selectedDetection {
s.Errorf("Invalid detection mode: got %q; want %q", text.Value, param.selectedDetection)
}
})
}
}