ShellBanner
System:Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686
Software:Apache. PHP/5.3.6-13ubuntu3.10
ID:uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
Safe Mode:OFF
Open_Basedir:OFF
Freespace:24.87 GB of 70.42 GB (35.31%)
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,

/ http/ root/ hls/ tests/ unit/ controller/ - drwxr-xr-x

Directory:
Viewing file:     level-controller.js (9.06 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
import LevelController from '../../../src/controller/level-controller';
import HlsMock from '../../mocks/hls.mock';
import Event from '../../../src/events';
import { ErrorDetails, ErrorTypes } from '../../../src/errors';

describe('LevelController', function () {
  const sandbox = sinon.createSandbox();
  let hls;
  let levelController;
  let triggerSpy;

  beforeEach(function () {
    hls = new HlsMock({}, sandbox);
    levelController = new LevelController(hls);
    triggerSpy = hls.trigger;
  });

  afterEach(function () {
    hls = null;
    levelController = null;
    sandbox.restore();
  });

  it('should trigger level switch when level is manually set', function () {
    let data = {
      audioTracks: [],
      levels: [
        { bitrate: 105000, name: '144', details: { totalduration: 10, fragments: [{}] } },
        { bitrate: 246440, name: '240', details: { totalduration: 10, fragments: [{}] } },
        { bitrate: 460560, name: '380', details: { totalduration: 10, fragments: [{}] } },
        { bitrate: 836280, name: '480', details: { totalduration: 10, fragments: [{}] } },
        { bitrate: 2149280, name: '720', details: { totalduration: 10, fragments: [{}] } },
        { bitrate: 6221600, name: '1080', details: { totalduration: 10, fragments: [{}] } }
      ],
      networkDetails: '',
      subtitles: [],
      url: 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8'
    };

    let nextLevel = 1;

    levelController.onManifestLoaded(data);
    levelController.level = nextLevel;

    expect(triggerSpy).to.have.been.calledWith(Event.LEVEL_SWITCHING, {
      bitrate: 246440,
      details: data.levels[1].details,
      fragmentError: false,
      level: 1,
      loadError: 0,
      name: '240',
      url: [undefined],
      urlId: 0
    });
  });

  describe('onManifestLoaded handler', function () {
    it('should trigger an error when no levels are found in the manifest', function () {
      levelController.onManifestLoaded({
        audioTracks: [],
        levels: [],
        networkDetails: '',
        subtitles: [],
        url: 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8'
      });

      expect(triggerSpy).to.have.been.calledWith(Event.ERROR, {
        type: ErrorTypes.MEDIA_ERROR,
        details: ErrorDetails.MANIFEST_INCOMPATIBLE_CODECS_ERROR,
        fatal: true,
        url: undefined,
        reason: 'no level with compatible codecs found in manifest'
      });
    });

    it('should trigger hlsManifestParsed when levels are found in the manifest', function () {
      let data = {
        audioTracks: [],
        levels: [
          { bitrate: 105000, name: '144', details: { totalduration: 10, fragments: [{}] } },
          { bitrate: 246440, name: '240', details: { totalduration: 10, fragments: [{}] } },
          { bitrate: 460560, name: '380', details: { totalduration: 10, fragments: [{}] } },
          { bitrate: 836280, name: '480', details: { totalduration: 10, fragments: [{}] } },
          { bitrate: 2149280, name: '720', details: { totalduration: 10, fragments: [{}] } },
          { bitrate: 6221600, name: '1080', details: { totalduration: 10, fragments: [{}] } }
        ],
        networkDetails: '',
        subtitles: [],
        stats: {},
        url: 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8'
      };

      levelController.onManifestLoaded(data);

      expect(triggerSpy).to.have.been.calledWith(Event.MANIFEST_PARSED, {
        levels: data.levels,
        audioTracks: [],
        firstLevel: 0,
        stats: {},
        audio: false,
        video: false,
        altAudio: false
      });
    });

    it('should signal altAudio if present in the manifest without codec attributes', function () {
      let data = {
        audioTracks: [
          { audioCodec: 'mp4a.40.5', url: 'audio-track.m3u8' }
        ],
        levels: [
          { bitrate: 105000, name: '144', details: { totalduration: 10, fragments: [{}] } }
        ],
        networkDetails: '',
        subtitles: [],
        stats: {},
        url: 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8'
      };

      levelController.onManifestLoaded(data);
      expect(triggerSpy).to.have.been.calledWith(Event.MANIFEST_PARSED, {
        levels: data.levels,
        audioTracks: data.audioTracks,
        firstLevel: 0,
        stats: {},
        audio: false,
        video: false,
        altAudio: true
      });
    });

    it('should signal altAudio if present in the manifest with codec attributes', function () {
      let data = {
        audioTracks: [
          { audioCodec: 'mp4a.40.5', url: 'audio-track.m3u8' }
        ],
        levels: [
          {
            bitrate: 105000,
            name: '144',
            videoCodec: 'avc1.42001e',
            audioCodec: 'mp4a.40.2',
            details: { totalduration: 10, fragments: [{}] }
          }
        ],
        networkDetails: '',
        subtitles: [],
        stats: {},
        url: 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8'
      };

      levelController.onManifestLoaded(data);
      expect(triggerSpy).to.have.been.calledWith(Event.MANIFEST_PARSED, {
        levels: data.levels,
        audioTracks: data.audioTracks,
        firstLevel: 0,
        stats: {},
        audio: true,
        video: true,
        altAudio: true
      });
    });

    it('should not signal altAudio in audio-only streams', function () {
      let data = {
        audioTracks: [
          { audioCodec: 'mp4a.40.5', name: 'main' },
          { audioCodec: 'mp4a.40.5', url: 'audio-track.m3u8' }
        ],
        levels: [
          {
            bitrate: 105000,
            name: 'audio-only',
            audioCodec: 'mp4a.40.2',
            details: { totalduration: 10, fragments: [{}] }
          }
        ],
        networkDetails: '',
        subtitles: [],
        stats: {},
        url: 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8'
      };

      levelController.onManifestLoaded(data);
      expect(triggerSpy).to.have.been.calledWith(Event.MANIFEST_PARSED, {
        levels: data.levels,
        audioTracks: data.audioTracks,
        firstLevel: 0,
        stats: {},
        audio: true,
        video: false,
        altAudio: false
      });
    });
  });

  describe('manifest parsing', function () {
    let data;
    beforeEach(function () {
      data = {
        audioTracks: [],
        levels: [{ bitrate: 105000, name: '144', details: { totalduration: 10, fragments: [{}] } }],
        networkDetails: '',
        subtitles: [],
        url: 'foo'
      };
    });

    it('signals video if there is a videoCodec signaled', function () {
      data.levels[0].videoCodec = 'avc1.42e01e';
      levelController.onManifestLoaded(data);

      const { name, payload } = hls.getEventData(0);
      expect(name).to.equal(Event.MANIFEST_PARSED);
      expect(payload.video).to.equal(true);
      expect(payload.audio).to.equal(false);
      expect(payload.altAudio).to.equal(false);
    });

    it('signals audio if there is an audioCodec signaled', function () {
      data.levels[0].audioCodec = 'mp4a.40.5';
      levelController.onManifestLoaded(data);

      const { name, payload } = hls.getEventData(0);
      expect(name).to.equal(Event.MANIFEST_PARSED);
      expect(payload.video).to.equal(false);
      expect(payload.audio).to.equal(true);
      expect(payload.altAudio).to.equal(false);
    });

    it('signals altAudio if there are audioTracks containing URIs', function () {
      data.levels[0].videoCodec = 'avc1.42e01e';
      data.audioTracks = [
        {
          groupId: 'audio',
          name: 'Audio',
          type: 'AUDIO',
          default: true,
          autoselect: true,
          forced: false,
          url: 'https://d35u71x3nb8v2y.cloudfront.net/4b711b97-513c-4d36-ad29-298ab23a2e5e/05845f51-c319-41ca-8e84-b84299925a0c/playlist.m3u8',
          id: 0
        },
        {
          groupId: 'audio',
          name: 'Audio',
          type: 'AUDIO',
          default: true,
          autoselect: true,
          forced: false,
          id: 0
        }
      ];

      levelController.onManifestLoaded(data);

      const { name, payload } = hls.getEventData(0);
      expect(name).to.equal(Event.MANIFEST_PARSED);
      expect(payload.video).to.equal(true);
      expect(payload.audio).to.equal(false);
      expect(payload.altAudio).to.equal(true);
    });

    it('does not signal altAudio if the audioTracks do no not contain any URIs', function () {
      data.levels[0].videoCodec = 'avc1.42e01e';
      data.audioTracks = [
        {
          groupId: 'audio',
          name: 'Audio',
          type: 'AUDIO',
          default: true,
          autoselect: true,
          forced: false,
          id: 0
        },
        {
          groupId: 'audio',
          name: 'Audio',
          type: 'AUDIO',
          default: true,
          autoselect: true,
          forced: false,
          id: 0
        }
      ];

      levelController.onManifestLoaded(data);

      const { name, payload } = hls.getEventData(0);
      expect(name).to.equal(Event.MANIFEST_PARSED);
      expect(payload.video).to.equal(true);
      expect(payload.audio).to.equal(false);
      expect(payload.altAudio).to.equal(false);
    });
  });
});
Command:
Quick Commands:
Upload:
[Read-Only] Max size: 100MB
PHP Filesystem: <@ Ú
Search File:
regexp
Create File:
Overwrite [Read-Only]
View File:
Mass Defacement:
[+] Main Directory: [+] Defacement Url:
LmfaoX Shell - Private Build [BETA] - v0.1 -; Generated: 0.1687 seconds