blob: 40239bf986e359394f154b39881307099f2f89c5 [file] [log] [blame]
# Copyright 2017 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.
from fuzzy_check import FuzzyCheck
from validators import *
# Two finger scroll with stationary finger should only scroll, was swiping
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
ScrollValidator(merge=True),
FlingValidator(),
ScrollValidator(merge=True),
FlingValidator(),
ScrollValidator(merge=True),
FlingValidator(),
ScrollValidator(merge=True),
FlingValidator(),
]
fuzzy.unexpected = [
FlingValidator(),
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)