123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- describe('StringService', function() {
- let $service;
- // Ignoring page reload request
- beforeAll(() => window.onbeforeunload = () => null);
- beforeEach(function() {
- module('3ema.services');
- // Inject the service
- inject(function(StringService) {
- $service = StringService;
- });
- });
- describe('getWord', function () {
- it('parse null string', () => {
- expect($service.getWord(null, 1)).toEqual(jasmine.objectContaining({
- word: null,
- realLength: 0
- }));
- });
- it('parse empty string', () => {
- expect($service.getWord('', 1)).toEqual(jasmine.objectContaining({
- word: null,
- realLength: 0
- }));
- });
- it('parse string (spaces)', () => {
- expect($service.getWord('When the man comes around.', 12)).toEqual(jasmine.objectContaining({
- word: 'man',
- realLength: 3
- }));
- expect($service.getWord('When the man comes around.', 13)).toEqual(jasmine.objectContaining({
- word: 'man',
- realLength: 4
- }));
- expect($service.getWord('When the man comes around.', 16)).toEqual(jasmine.objectContaining({
- word: 'man',
- realLength: 7
- }));
- });
- it('parse string (newline)', () => {
- expect($service.getWord("When\nthe\nman\ncomes\naround.", 12)).toEqual(jasmine.objectContaining({
- word: 'man',
- realLength: 3
- }));
- expect($service.getWord("When\nthe\nman\ncomes\naround.", 13)).toEqual(jasmine.objectContaining({
- word: 'man',
- realLength: 4
- }));
- expect($service.getWord("When\nthe\nman\n\n\n\n\n\n\n\ncomes\naround.", 16)).toEqual(jasmine.objectContaining({
- word: 'man',
- realLength: 7
- }));
- });
- it('parse string (newline/spaces)', () => {
- expect($service.getWord("When the\nman comes around.", 12)).toEqual(jasmine.objectContaining({
- word: 'man',
- realLength: 3
- }));
- expect($service.getWord("When the\nman \ncomes around.", 13)).toEqual(jasmine.objectContaining({
- word: 'man',
- realLength: 4
- }));
- expect($service.getWord("When the\nman \n \n \n \ncomes around.", 16)).toEqual(jasmine.objectContaining({
- word: 'man',
- realLength: 7
- }));
- });
- it('parse string (special character)', () => {
- expect($service.getWord('When the :man: comes around.', 15)).toEqual(jasmine.objectContaining({
- word: ':man:',
- realLength: 6
- }));
- expect($service.getWord('When the :man: comes around.', 14)).toEqual(jasmine.objectContaining({
- word: ':man:',
- realLength: 5
- }));
- });
- it('parse string (with emoji (2 chars))', () => {
- expect($service.getWord('this 😄 is a :smile: face', 19)).toEqual(jasmine.objectContaining({
- word: ':smile:',
- realLength: 7
- }));
- });
- it('parse string (additional separators)', () => {
- expect($service.getWord('When the spider:man: comes around.', 20, [':'])).toEqual(jasmine.objectContaining({
- word: ':man:',
- realLength: 5
- }));
- });
- });
- describe('byteChunkSplit', function() {
- this.testPatterns = (cases, size, offset) => {
- for (let testcase of cases) {
- const input = testcase[0];
- const expected = testcase[1];
- expect($service.byteChunk(input, size, offset)).toEqual(expected);
- }
- };
- it('short chunks', () => {
- this.testPatterns([
- ['abc',
- ['abc',]],
- ['abcdefghijklmn',
- ['abcdef', 'ghijkl', 'mn',]],
- // four byte emoji
- ['😅😅',
- ['😅', '😅']]
- ], 6, null);
- });
- it('chunks with offset', () => {
- this.testPatterns([
- ['The quick white 🐼. He jumped over the lazy 🐶.',
- ['The', 'quick', 'white', '🐼.', 'He', 'jumped', 'over', 'the', 'lazy', '🐶.',]],
- ], 6, 10);
- this.testPatterns([
- ['The quick white 🐼. He jumped over the lazy 🐶.',
- ['The quick white 🐼', '. He jumped over the', 'lazy 🐶.',]],
- ], 20, 10);
- });
- });
- });
|