-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1973 JUnit test for patched talkgroup audio call streaming that test…
…s streaming the audio as the patched group or as the individual patched talkgroups according to the user preferences setting in call management. (#2015) Co-authored-by: Dennis Sheirer <[email protected]>
- Loading branch information
Showing
8 changed files
with
243 additions
and
21 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
223 changes: 223 additions & 0 deletions
223
src/test/java/io/github/dsheirer/audio/broadcast/AudioStreamingManagerTest.java
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,223 @@ | ||
/* | ||
* ***************************************************************************** | ||
* Copyright (C) 2014-2024 Dennis Sheirer | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* 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/> | ||
* **************************************************************************** | ||
*/ | ||
|
||
package io.github.dsheirer.audio.broadcast; | ||
|
||
import io.github.dsheirer.alias.Alias; | ||
import io.github.dsheirer.alias.AliasList; | ||
import io.github.dsheirer.alias.id.broadcast.BroadcastChannel; | ||
import io.github.dsheirer.alias.id.talkgroup.Talkgroup; | ||
import io.github.dsheirer.audio.AudioSegment; | ||
import io.github.dsheirer.dsp.oscillator.ScalarRealOscillator; | ||
import io.github.dsheirer.identifier.patch.PatchGroup; | ||
import io.github.dsheirer.identifier.radio.RadioIdentifier; | ||
import io.github.dsheirer.identifier.talkgroup.TalkgroupIdentifier; | ||
import io.github.dsheirer.message.TimeslotMessage; | ||
import io.github.dsheirer.module.decode.p25.identifier.patch.APCO25PatchGroup; | ||
import io.github.dsheirer.module.decode.p25.identifier.radio.APCO25RadioIdentifier; | ||
import io.github.dsheirer.module.decode.p25.identifier.talkgroup.APCO25Talkgroup; | ||
import io.github.dsheirer.preference.UserPreferences; | ||
import io.github.dsheirer.protocol.Protocol; | ||
import io.github.dsheirer.sample.Listener; | ||
import java.io.IOException; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.util.concurrent.CountDownLatch; | ||
import java.util.concurrent.TimeUnit; | ||
import java.util.stream.Stream; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
/** | ||
* Automated testing for the AudioStreamingManager that includes for testing streaming a patch group audio segment as | ||
* an individual stream aliased against the patch group, or broken up into the set of patched talkgroups and streamed | ||
* according to the aliases for each patched talkgroup. | ||
*/ | ||
public class AudioStreamingManagerTest | ||
{ | ||
private static final int TALKGROUP_1 = 100; | ||
private static final int TALKGROUP_2 = 200; | ||
private static final int TALKGROUP_3 = 300; | ||
private static final int RADIO_1 = 9999; | ||
|
||
@Test | ||
public void testPatchGroupStreamingAsPatchGroup() | ||
{ | ||
int expectedRecordingsCount = 1; | ||
|
||
//We use a countdown latch to count the number of expected audio recordings produced. | ||
CountDownLatch latch = new CountDownLatch(expectedRecordingsCount); | ||
Listener<AudioRecording> listener = audioRecording -> { | ||
latch.countDown(); | ||
}; | ||
|
||
UserPreferences userPreferences = new UserPreferences(); | ||
userPreferences.getCallManagementPreference().setPatchGroupStreamingOption(PatchGroupStreamingOption.PATCH_GROUP); | ||
AudioStreamingManager manager = new AudioStreamingManager(listener, BroadcastFormat.MP3, userPreferences); | ||
manager.start(); | ||
manager.receive(getAudioSegment()); | ||
|
||
boolean success = false; | ||
|
||
try | ||
{ | ||
success = latch.await(5, TimeUnit.SECONDS); | ||
} | ||
catch(InterruptedException e) | ||
{ | ||
throw new RuntimeException(e); | ||
} | ||
|
||
cleanupStreamingDirectory(userPreferences.getDirectoryPreference().getDirectoryStreaming()); | ||
|
||
assertTrue(success, "Stream patch group audio as PATCHED GROUP failed to produce [" + | ||
latch.getCount() + "/" + expectedRecordingsCount + "] streaming recordings"); | ||
} | ||
|
||
@Test | ||
public void testPatchGroupStreamingAsIndividualGroups() | ||
{ | ||
int expectedRecordingsCount = 2; | ||
|
||
//We use a countdown latch to count the number of expected audio recordings produced. In this case, we expect | ||
//two audio recordings, one for stream B and one for stream C associated with the two patched talkgroups. | ||
CountDownLatch latch = new CountDownLatch(expectedRecordingsCount); | ||
Listener<AudioRecording> listener = audioRecording -> { | ||
latch.countDown(); | ||
}; | ||
|
||
UserPreferences userPreferences = new UserPreferences(); | ||
userPreferences.getCallManagementPreference().setPatchGroupStreamingOption(PatchGroupStreamingOption.TALKGROUPS); | ||
AudioStreamingManager manager = new AudioStreamingManager(listener, BroadcastFormat.MP3, userPreferences); | ||
manager.start(); | ||
manager.receive(getAudioSegment()); | ||
|
||
boolean success = false; | ||
|
||
try | ||
{ | ||
success = latch.await(5, TimeUnit.SECONDS); | ||
} | ||
catch(InterruptedException e) | ||
{ | ||
throw new RuntimeException(e); | ||
} | ||
|
||
cleanupStreamingDirectory(userPreferences.getDirectoryPreference().getDirectoryStreaming()); | ||
|
||
assertTrue(success, "Stream patch group audio as INDIVIDUAL TALKGROUPS failed to produce [" + | ||
latch.getCount() + "/" + expectedRecordingsCount + "] streaming recordings"); | ||
} | ||
|
||
/** | ||
* Cleanup any generated streaming recordings. | ||
* @param streamingDirectory | ||
*/ | ||
private void cleanupStreamingDirectory(Path streamingDirectory) | ||
{ | ||
if(Files.exists(streamingDirectory)) | ||
{ | ||
try(Stream<Path> fileStream = Files.list(streamingDirectory)) | ||
{ | ||
fileStream.forEach(path -> { | ||
try | ||
{ | ||
Files.delete(path); | ||
} | ||
catch(IOException e) | ||
{ | ||
e.printStackTrace(); | ||
} | ||
}); | ||
} | ||
catch(IOException e) | ||
{ | ||
e.printStackTrace(); | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* Creates an audio segment with audio using the supplied alias list. | ||
* @return audio segment | ||
*/ | ||
private static AudioSegment getAudioSegment() | ||
{ | ||
AliasList aliasList = getAliasList(); | ||
|
||
AudioSegment audioSegment = new AudioSegment(aliasList, TimeslotMessage.TIMESLOT_0); | ||
ScalarRealOscillator oscillator = new ScalarRealOscillator(1000, 8000); | ||
for(int x = 0; x < 100; x++) | ||
{ | ||
audioSegment.addAudio(oscillator.generate(500)); | ||
} | ||
audioSegment.addIdentifier(getPatchGroup()); | ||
audioSegment.addIdentifier(getRadio()); | ||
audioSegment.completeProperty().set(true); | ||
return audioSegment; | ||
} | ||
|
||
private static AliasList getAliasList() | ||
{ | ||
AliasList aliasList = new AliasList("test"); | ||
|
||
Alias patchAlias = new Alias("patch"); | ||
patchAlias.addAliasID(new Talkgroup(Protocol.APCO25, 100)); | ||
patchAlias.addAliasID(new BroadcastChannel("Stream A")); | ||
aliasList.addAlias(patchAlias); | ||
|
||
Alias talkgroupAlias1 = new Alias("talkgroup1"); | ||
talkgroupAlias1.addAliasID(new Talkgroup(Protocol.APCO25, 200)); | ||
talkgroupAlias1.addAliasID(new BroadcastChannel("Stream B")); | ||
aliasList.addAlias(talkgroupAlias1); | ||
|
||
Alias talkgroupAlias2 = new Alias("talkgroup2"); | ||
talkgroupAlias2.addAliasID(new Talkgroup(Protocol.APCO25, 300)); | ||
talkgroupAlias2.addAliasID(new BroadcastChannel("Stream C")); | ||
aliasList.addAlias(talkgroupAlias2); | ||
|
||
return aliasList; | ||
} | ||
|
||
/** | ||
* Creates a patch group | ||
* @return p25 patch group | ||
*/ | ||
private static APCO25PatchGroup getPatchGroup() | ||
{ | ||
TalkgroupIdentifier talkgroup1 = APCO25Talkgroup.create(TALKGROUP_1); | ||
TalkgroupIdentifier talkgroup2 = APCO25Talkgroup.create(TALKGROUP_2); | ||
TalkgroupIdentifier talkgroup3 = APCO25Talkgroup.create(TALKGROUP_3); | ||
|
||
PatchGroup pg = new PatchGroup(talkgroup1); | ||
pg.addPatchedTalkgroup(talkgroup2); | ||
pg.addPatchedTalkgroup(talkgroup3); | ||
return APCO25PatchGroup.create(pg); | ||
} | ||
|
||
/** | ||
* Creates a source radio identifier. | ||
* @return radio | ||
*/ | ||
private static RadioIdentifier getRadio() | ||
{ | ||
return APCO25RadioIdentifier.createFrom(RADIO_1); | ||
} | ||
} |