Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('MusicPlayerService | Created with enableSetNowPlaying false | MusicControl is not set', () => {
let musicPlayerService = new MusicPlayerService();
expect.assertions(3);
expect(MusicControl.enableBackgroundMode).not.toHaveBeenCalled();
expect(MusicControl.on).not.toHaveBeenCalled();
expect(MusicControl.enableControl).not.toHaveBeenCalled();
});
beforeEach(() => {
Sound.mockReset();
Sound.prototype.play.mockClear();
Sound.prototype.pause.mockClear();
Sound.prototype.stop.mockClear();
Sound.prototype.release.mockClear();
MusicControl.on.mockClear();
MusicControl.enableControl.mockClear();
MusicControl.enableBackgroundMode.mockClear();
MusicControl.setNowPlaying.mockClear();
MusicControl.updatePlayback.mockClear();
});
() => {
MusicControl.enableControl("seekForward", false);
MusicControl.enableControl("seekBackward", false);
MusicControl.enableControl("skipForward", false);
MusicControl.enableControl("skipBackward", false);
MusicControl.enableBackgroundMode(true);
const { streamChapter } = this.state;
MusicControl.setNowPlaying({
title: `${streamChapter && streamChapter.activeBook.name_id} ${streamChapter && streamChapter.activeChapter}`,
artist: "Alkitab Suara",
duration: this.state.streamDuration,
color: 0xfffffff
});
MusicControl.on("play", () => {
this.setState({ paused: false });
});
MusicControl.on("pause", () => {
this.setState({ paused: true });
});
async componentDidMount() {
await this.props.getSongs();
MusicControl.enableControl('play', true);
MusicControl.enableControl('pause', true);
MusicControl.enableControl('nextTrack', true);
MusicControl.enableControl('previousTrack', true);
MusicControl.enableControl('seekForward', false);
MusicControl.enableControl('seekBackward', false);
MusicControl.enableBackgroundMode(true);
MusicControl.on('play', ()=> {
this.togglePlay(true);
});
MusicControl.on('pause', ()=> {
this.togglePlay(false);
});
MusicControl.on('nextTrack', this.goForward.bind(this));
MusicControl.on('previousTrack', this.goBackward.bind(this));
}
_initializeMusicControl(): void {
MusicControl.enableBackgroundMode(true);
MusicControl.enableControl('play', true);
MusicControl.enableControl('pause', true);
MusicControl.enableControl('nextTrack', true);
MusicControl.enableControl('previousTrack', true);
MusicControl.on('play', this.togglePlayPause);
MusicControl.on('pause', this.togglePlayPause);
MusicControl.on('nextTrack', this.playNext);
MusicControl.on('previousTrack', this.playPrev);
}