blob: d6abf29a864d1d3c3415bba89146acc8cf696a76 [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 __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from fuzzy_check import FuzzyCheck
from validators import *
# originally generated gestures:
# FlingStop
# Motion d=25 x=2 y=24 r=0.09
# Scroll d=7 x=0 y=7 r=0.47
# Fling d=0 x=0 y=0 r=0.00
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
MotionValidator("== 0 ~ 26"),
ScrollValidator(">= 7", merge=True),
]
fuzzy.unexpected = [
FlingValidator(),
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)