-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2590: Fix timestamp calibration r=AlanGriffiths a=wmww Fixes #2577 Prevent timestamps in the future ever being sent, and use unmodified timestamps if they're close to Mir's internal timestamps. Co-authored-by: Sophie Winter <[email protected]>
- Loading branch information
1 parent
a78a870
commit 22d52f1
Showing
9 changed files
with
142 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* | ||
* Copyright © 2022 Canonical Ltd. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 or 3 as | ||
* published by the Free Software Foundation. | ||
* | ||
* This program 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "src/server/input/default_event_builder.h" | ||
#include "mir/cookie/authority.h" | ||
|
||
#include "mir/test/doubles/advanceable_clock.h" | ||
#include "mir/test/fake_shared.h" | ||
|
||
#include <gtest/gtest.h> | ||
#include <gmock/gmock.h> | ||
|
||
namespace mi = mir::input; | ||
namespace mev = mir::events; | ||
namespace mt = mir::test; | ||
namespace mtd = mt::doubles; | ||
|
||
using namespace ::testing; | ||
using namespace std::chrono_literals; | ||
|
||
namespace | ||
{ | ||
|
||
struct DefaultEventBuilder : public Test | ||
{ | ||
mtd::AdvanceableClock clock{{}}; | ||
mir::input::DefaultEventBuilder builder{ | ||
0, | ||
mt::fake_shared(clock), | ||
mir::cookie::Authority::create()}; | ||
|
||
auto event_timestamp(std::optional<std::chrono::nanoseconds> timestamp) -> std::chrono::nanoseconds | ||
{ | ||
auto const ev = builder.key_event(timestamp, mir_keyboard_action_down, 0, 0); | ||
return std::chrono::nanoseconds{mir_input_event_get_event_time(mir_event_get_input_event(ev.get()))}; | ||
} | ||
}; | ||
} | ||
|
||
TEST_F(DefaultEventBuilder, when_no_timestamp_is_given_then_clock_timestamp_is_used) | ||
{ | ||
clock.advance_by(12s); | ||
EXPECT_THAT(event_timestamp(std::nullopt), Eq(12s)); | ||
} | ||
|
||
TEST_F(DefaultEventBuilder, when_no_timestamp_is_given_then_clock_timestamp_is_updated_and_used) | ||
{ | ||
clock.advance_by(12s); | ||
event_timestamp(std::nullopt); | ||
clock.advance_by(2s); | ||
EXPECT_THAT(event_timestamp(std::nullopt), Eq(14s)); | ||
} | ||
|
||
TEST_F(DefaultEventBuilder, when_timestamp_matches_clock_then_correct_timestamp_used) | ||
{ | ||
clock.advance_by(12s); | ||
EXPECT_THAT(event_timestamp(12s), Eq(12s)); | ||
} | ||
|
||
TEST_F(DefaultEventBuilder, when_timestamp_is_slightly_older_than_clock_then_given_timestamp_is_used) | ||
{ | ||
clock.advance_by(12s); | ||
EXPECT_THAT(event_timestamp(12s - 10ms), Eq(12s - 10ms)); | ||
} | ||
|
||
TEST_F(DefaultEventBuilder, when_timestamp_is_slightly_newer_than_clock_then_clock_timestamp_is_used) | ||
{ | ||
clock.advance_by(12s); | ||
EXPECT_THAT(event_timestamp(12s + 10ms), Eq(12s)); | ||
} | ||
|
||
TEST_F(DefaultEventBuilder, when_timestamp_is_much_older_than_clock_then_clock_timestamp_is_used) | ||
{ | ||
clock.advance_by(400s); | ||
EXPECT_THAT(event_timestamp(20s), Eq(400s)); | ||
} | ||
|
||
TEST_F(DefaultEventBuilder, when_timestamp_is_much_older_than_clock_then_offset_persists) | ||
{ | ||
clock.advance_by(400s); | ||
event_timestamp(20s); | ||
clock.advance_by(2s); | ||
EXPECT_THAT(event_timestamp(22s - 10ms), Eq(402s - 10ms)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters