blob: 1f9e8b41553c4eb2f8f758e0db3d1e33336e8f85 [file] [log] [blame]
# Copyright (c) 2013 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:
# FlingStop
# ButtonDown(4)
# Motion d=52.99 x=5.604 y=51.92 r=0.194 s=151.5
# ButtonUp(4)
# Motion d=2.866 x=0.4469 y=2.681 r=0.1086 s=169.6
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
ButtonDownValidator(1),
ButtonUpValidator(1),
]
fuzzy.unexpected = [
MotionValidator(merge=True),
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)