blob: 8337ebcc6816e1cc89644c49817844c0b6c5708d [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:
# FlingStop
# ButtonDown(1)
# FlingStop
# ButtonUp(1)
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
# MotionValidator("== 100 ~ 50"),
# FlingStopValidator(),
ButtonDownValidator(1),
ButtonUpValidator(1),
ButtonDownValidator(1),
ButtonUpValidator(1),
# ScrollValidator(">= 100"),
# FlingValidator(">= 100"),
# AnythingButValidator(ButtonDownValidator(1)),
]
fuzzy.unexpected = [
# MotionValidator("<10"),
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)