blob: 11246a25d6a7779dccce260fe462a7f2423563dd [file] [log] [blame]
// Copyright 2020 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 arc
import (
"context"
"time"
"chromiumos/tast/local/arc"
"chromiumos/tast/local/arc/optin"
"chromiumos/tast/local/chrome"
"chromiumos/tast/testing"
)
func init() {
testing.AddTest(&testing.Test{
Func: Optin,
Desc: "A functional test that verifies OptIn flow",
Contacts: []string{
"arc-core@google.com",
"mhasank@chromium.org",
"khmel@chromium.org", // author.
},
Attr: []string{"group:mainline", "group:arc-functional"},
VarDeps: []string{"ui.gaiaPoolDefault"},
SoftwareDeps: []string{
"chrome",
"chrome_internal",
"play_store",
},
Params: []testing.Param{{
Val: 1,
ExtraSoftwareDeps: []string{"android_p"},
}, {
Name: "vm",
Val: 1,
ExtraSoftwareDeps: []string{"android_vm"},
}},
Timeout: 6 * time.Minute,
})
}
// Optin tests optin flow.
func Optin(ctx context.Context, s *testing.State) {
cr := setupChrome(ctx, s)
defer cr.Close(ctx)
s.Log("Performing optin")
maxAttempts := s.Param().(int)
if err := optin.PerformWithRetry(ctx, cr, maxAttempts); err != nil {
s.Fatal("Failed to optin: ", err)
}
}
// setupChrome starts chrome with pooled GAIA account and ARC enabled.
func setupChrome(ctx context.Context, s *testing.State) *chrome.Chrome {
cr, err := chrome.New(ctx,
chrome.GAIALoginPool(s.RequiredVar("ui.gaiaPoolDefault")),
chrome.ARCSupported(),
chrome.ExtraArgs(arc.DisableSyncFlags()...))
if err != nil {
s.Fatal("Failed to start Chrome: ", err)
}
return cr
}