| // 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 ui |
| |
| import ( |
| "context" |
| "time" |
| |
| "chromiumos/tast/ctxutil" |
| "chromiumos/tast/local/bundles/cros/ui/cuj" |
| "chromiumos/tast/local/bundles/cros/ui/videocuj" |
| "chromiumos/tast/local/chrome/ash" |
| "chromiumos/tast/local/input" |
| "chromiumos/tast/testing" |
| "chromiumos/tast/testing/hwdep" |
| ) |
| |
| type videoCUJParam struct { |
| tier cuj.Tier |
| app string |
| } |
| |
| func init() { |
| testing.AddTest(&testing.Test{ |
| Func: VideoCUJ2, |
| Desc: "Measures the smoothess of switch between full screen YouTube video and another browser window", |
| Contacts: []string{"tim.chang@cienet.com", "cienet-development@googlegroups.com"}, |
| SoftwareDeps: []string{"chrome", "arc"}, |
| HardwareDeps: hwdep.D(hwdep.InternalDisplay()), |
| Fixture: "loggedInAndKeepState", |
| Vars: []string{ |
| // Optional. Expecting "tablet" or "clamshell". Other values will be be taken as "clamshell". |
| "ui.cuj_mode", |
| }, |
| Params: []testing.Param{ |
| { |
| Name: "basic_youtube_web", |
| Timeout: 10 * time.Minute, |
| Val: videoCUJParam{ |
| tier: cuj.Basic, |
| app: videocuj.YoutubeWeb, |
| }, |
| }, { |
| Name: "plus_youtube_web", |
| Timeout: 10 * time.Minute, |
| Val: videoCUJParam{ |
| tier: cuj.Plus, |
| app: videocuj.YoutubeWeb, |
| }, |
| }, { |
| Name: "basic_youtube_app", |
| Timeout: 10 * time.Minute, |
| Val: videoCUJParam{ |
| tier: cuj.Basic, |
| app: videocuj.YoutubeApp, |
| }, |
| }, { |
| Name: "plus_youtube_app", |
| Timeout: 10 * time.Minute, |
| Val: videoCUJParam{ |
| tier: cuj.Plus, |
| app: videocuj.YoutubeApp, |
| }, |
| }, |
| }, |
| }) |
| } |
| |
| // VideoCUJ2 performs the video cases including youtube web, and youtube app. |
| func VideoCUJ2(ctx context.Context, s *testing.State) { |
| cr := s.FixtValue().(cuj.FixtureData).Chrome |
| a := s.FixtValue().(cuj.FixtureData).ARC |
| |
| cleanupCtx := ctx |
| ctx, cancel := ctxutil.Shorten(ctx, 5*time.Second) |
| defer cancel() |
| |
| tconn, err := cr.TestAPIConn(ctx) |
| if err != nil { |
| s.Fatal("Failed to connect to test API: ", err) |
| } |
| |
| kb, err := input.Keyboard(ctx) |
| if err != nil { |
| s.Fatal("Failed to open the keyboard: ", err) |
| } |
| defer kb.Close() |
| |
| var tabletMode bool |
| if mode, ok := s.Var("ui.cuj_mode"); ok { |
| tabletMode = mode == "tablet" |
| cleanup, err := ash.EnsureTabletModeEnabled(ctx, tconn, tabletMode) |
| if err != nil { |
| s.Fatalf("Failed to enable tablet mode to %v: %v", tabletMode, err) |
| } |
| defer cleanup(cleanupCtx) |
| } else { |
| // Use default screen mode of the DUT. |
| tabletMode, err = ash.TabletModeEnabled(ctx, tconn) |
| if err != nil { |
| s.Fatal("Failed to get DUT default screen mode: ", err) |
| } |
| } |
| s.Log("Running test with tablet mode: ", tabletMode) |
| |
| var uiHandler cuj.UIActionHandler |
| if tabletMode { |
| if uiHandler, err = cuj.NewTabletActionHandler(ctx, tconn); err != nil { |
| s.Fatal("Failed to create tablet action handler: ", err) |
| } |
| } else { |
| if uiHandler, err = cuj.NewClamshellActionHandler(ctx, tconn); err != nil { |
| s.Fatal("Failed to create clamshell action handler: ", err) |
| } |
| } |
| defer uiHandler.Close() |
| |
| testResources := videocuj.TestResources{ |
| Cr: cr, |
| Tconn: tconn, |
| A: a, |
| Kb: kb, |
| UIHandler: uiHandler, |
| } |
| |
| videoCUJParams := s.Param().(videoCUJParam) |
| testParams := videocuj.TestParams{ |
| Tier: videoCUJParams.tier, |
| App: videoCUJParams.app, |
| OutDir: s.OutDir(), |
| TabletMode: tabletMode, |
| ExtendedDisplay: false, |
| } |
| |
| if err := videocuj.Run(ctx, testResources, testParams); err != nil { |
| s.Fatal("Failed to run video cuj test: ", err) |
| } |
| } |