diff --git a/test/edge_test/MockMiniSeedClient.py b/test/edge_test/mseed_test_clients.py similarity index 63% rename from test/edge_test/MockMiniSeedClient.py rename to test/edge_test/mseed_test_clients.py index 88c6a4b612b5382e4eafb070501f83779c1a4dc1..9fd62bb797e5f515acce0f6dd7f8b4eb24bbfa2d 100644 --- a/test/edge_test/MockMiniSeedClient.py +++ b/test/edge_test/mseed_test_clients.py @@ -37,3 +37,26 @@ class MockMiniSeedClient(Client): ) trace.data = numpy.ones(trace.stats.npts) return Stream([trace]) + + +class MisalignedMiniSeedClient(MockMiniSeedClient): + """mock client that adds an offset value to endtime""" + + def __init__(self, increment: int = 1): + self.increment = increment + self.offset = 0 + + def get_waveforms( + self, + network: str, + station: str, + location: str, + channel: str, + starttime: UTCDateTime, + endtime: UTCDateTime, + ): + endtime = endtime + self.offset + self.offset = self.offset + self.increment + return super().get_waveforms( + network, station, location, channel, starttime, endtime + )