#!/usr/bin/env python3
#
# Copyright (c) 2024 Stormux
# Copyright (c) 2010-2012 The Orca Team
# Copyright (c) 2012 Igalia, S.L.
# Copyright (c) 2005-2010 Sun Microsystems Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., Franklin Street, Fifth Floor,
# Boston MA  02110-1301 USA.
#
# Fork of Orca Screen Reader (GNOME)
# Original source: https://gitlab.gnome.org/GNOME/orca

"""Test of Dojo slider presentation."""

from macaroon.playback import *
import utils

sequence = MacroSequence()

#sequence.append(WaitForDocLoad())
sequence.append(PauseAction(10000))

sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
    "1. Tab to first slider",
    ["BRAILLE LINE:  'slider 1 10 horizontal slider'",
     "     VISIBLE:  'slider 1 10 horizontal slider', cursor=1",
     "BRAILLE LINE:  'Focus mode'",
     "     VISIBLE:  'Focus mode', cursor=0",
     "SPEECH OUTPUT: 'form'",
     "SPEECH OUTPUT: 'slider 1 horizontal slider 10.'",
     "SPEECH OUTPUT: 'Focus mode' voice=system"]))

sequence.append(KeyComboAction("Right"))

sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Right"))
sequence.append(utils.AssertPresentationAction(
    "2. Increment first slider",
    ["KNOWN ISSUE: This is the value exposed to us so we're passing it along as-is.",
     "BRAILLE LINE:  'slider 1 10.[0-9]+ horizontal slider'",
     "     VISIBLE:  'slider 1 10.[0-9]+ hori[a-z]*', cursor=1",
     "SPEECH OUTPUT: '10.[0-9]+'"]))

sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Right"))
sequence.append(utils.AssertPresentationAction(
    "3. Increment first slider",
    ["BRAILLE LINE:  'slider 1 10.[0-9]+ horizontal slider'",
     "     VISIBLE:  'slider 1 10.[0-9]+ hori[a-z]*', cursor=1",
     "SPEECH OUTPUT: '10.[0-9]+'"]))

sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Left"))
sequence.append(utils.AssertPresentationAction(
    "4. Decrement first slider",
    ["BRAILLE LINE:  'slider 1 10.[0-9]+ horizontal slider'",
     "     VISIBLE:  'slider 1 10.[0-9]+ hori[a-z]*', cursor=1",
     "SPEECH OUTPUT: '10.[0-9]+'"]))

sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Left"))
sequence.append(utils.AssertPresentationAction(
    "5. Decrement first slider",
    ["BRAILLE LINE:  'slider 1 10.[0-9]+ horizontal slider'",
     "     VISIBLE:  'slider 1 10.[0-9]+ hori[a-z]*', cursor=1",
     "SPEECH OUTPUT: '10.[0-9]+'"]))

sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
    "6. Move to entry",
    ["BRAILLE LINE:  'Slider1 Value: 10.[0-9]% rdonly'",
     "     VISIBLE:  'Slider1 Value: 10.[0-9]% rdonly', cursor=21",
     "SPEECH OUTPUT: 'Slider1 Value: read only entry 10.[0-9]% selected.'"]))

sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
    "7. Move to button",
    ["BRAILLE LINE:  'Disable previous slider push button'",
     "     VISIBLE:  'Disable previous slider push but', cursor=1",
     "BRAILLE LINE:  'Browse mode'",
     "     VISIBLE:  'Browse mode', cursor=0",
     "SPEECH OUTPUT: 'Disable previous slider push button'",
     "SPEECH OUTPUT: 'Browse mode' voice=system"]))

sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
    "8. Tab to second slider",
    ["BRAILLE LINE:  'Disable previous slider push button'",
     "     VISIBLE:  'Disable previous slider push but', cursor=1",
     "BRAILLE LINE:  'slider 2 10 horizontal slider'",
     "     VISIBLE:  'slider 2 10 horizontal slider', cursor=1",
     "BRAILLE LINE:  'Focus mode'",
     "     VISIBLE:  'Focus mode', cursor=0",
     "SPEECH OUTPUT: 'slider 2 horizontal slider 10.'",
     "SPEECH OUTPUT: 'Focus mode' voice=system"]))

sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
    "9. Increment second slider",
    ["BRAILLE LINE:  'slider 2 10 horizontal slider'",
     "     VISIBLE:  'slider 2 10 horizontal slider', cursor=1",
     "BRAILLE LINE:  'slider 2 20 horizontal slider'",
     "     VISIBLE:  'slider 2 20 horizontal slider', cursor=1",
     "SPEECH OUTPUT: '20'"]))

sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
    "10. Increment second slider",
    ["BRAILLE LINE:  'slider 2 30 horizontal slider'",
     "     VISIBLE:  'slider 2 30 horizontal slider', cursor=1",
     "SPEECH OUTPUT: '30'"]))

sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
    "11. Decrement second slider",
    ["BRAILLE LINE:  'slider 2 20 horizontal slider'",
     "     VISIBLE:  'slider 2 20 horizontal slider', cursor=1",
     "SPEECH OUTPUT: '20'"]))

sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
    "12. Decrement second slider",
    ["BRAILLE LINE:  'slider 2 10 horizontal slider'",
     "     VISIBLE:  'slider 2 10 horizontal slider', cursor=1",
     "SPEECH OUTPUT: '10'"]))

sequence.append(utils.AssertionSummaryAction())
sequence.start()