blob: 5ef729d8fc16d32ff3712c21490c7285c72ba6b7 [file] [log] [blame]
# Copyright (c) 2012 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 *
# originally generated gestures:
# Motion d=403 x=401 y=6 r=21.78
# FlingStop
# Scroll d=37 x=37 y=0 r=0.00
# Fling d=33 x=23 y=23 r=0.00
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
# MotionValidator("== 100 ~ 50"),
# FlingStopValidator(),
# ButtonDownValidator(1),
# ButtonUpValidator(1),
# ScrollValidator(">= 100"),
# FlingValidator(">= 100"),
# AnythingButValidator(ButtonDownValidator(1)),
]
fuzzy.unexpected = [
# MotionValidator("<10"),
FlingStopValidator("<10"),
ScrollValidator(merge=True),
FlingValidator(),
]
return fuzzy.Check(gestures)