!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/node-red/node_modules/jsdoc/plugins/test/specs/   drwxr-xr-x
Free 13.17 GB of 57.97 GB (22.72%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     summarize.js (3.81 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*global describe, expect, it */
'use strict';

var summarize = require('../../summarize');

describe('summarize', function() {
    it('should export handlers', function() {
        expect(summarize.handlers).toBeDefined();
        expect(typeof summarize.handlers).toBe('object');
    });

    it('should export a newDoclet handler', function() {
        expect(summarize.handlers.newDoclet).toBeDefined();
        expect(typeof summarize.handlers.newDoclet).toBe('function');
    });

    describe('newDoclet handler', function() {
        var handler = summarize.handlers.newDoclet;

        it('should not blow up if the doclet is missing', function() {
            function noDoclet() {
                return handler({});
            }

            expect(noDoclet).not.toThrow();
        });

        it('should not change the summary if it is already defined', function() {
            var doclet = {
                summary: 'This is a summary.',
                description: 'Descriptions are good.'
            };
            handler({ doclet: doclet });

            expect(doclet.summary).not.toBe(doclet.description);
        });

        it('should not do anything if the description is missing', function() {
            var doclet = {};
            handler({ doclet: doclet });

            expect(doclet.summary).not.toBeDefined();
        });

        it('should use the first sentence as the summary', function() {
            var doclet = {
                description: 'This sentence is the summary. This sentence is not.'
            };
            handler({ doclet: doclet });

            expect(doclet.summary).toBe('This sentence is the summary.');
        });

        it('should not add an extra period if there is only one sentence in the description',
            function() {
            var doclet = {
                description: 'This description has only one sentence.'
            };
            handler({ doclet: doclet });

            expect(doclet.summary).toBe('This description has only one sentence.');
        });

        it('should use the entire description, plus a period, as the summary if the description ' +
            'does not contain a period', function() {
            var doclet = {
                description: 'This is a description'
            };
            handler({ doclet: doclet });

            expect(doclet.summary).toBe('This is a description.');
        });

        it('should use the entire description as the summary if the description contains only ' +
            'one sentence', function() {
            var doclet = {
                description: 'This is a description.'
            };
            handler({ doclet: doclet });

            expect(doclet.description).toBe('This is a description.');
        });

        it('should work when an HTML tag immediately follows the first sentence', function() {
            var doclet = {
                description: 'This sentence is the summary.<small>This sentence is small.</small>'
            };
            handler({ doclet: doclet });

            expect(doclet.summary).toBe('This sentence is the summary.');
        });

        it('should generate valid HTML if a tag is opened, but not closed, in the summary',
            function() {
            var doclet = {
                description: 'This description has <em>a tag. The tag straddles</em> sentences.'
            };
            handler({ doclet: doclet });

            expect(doclet.summary).toBe('This description has <em>a tag.</em>');
        });

        it('should not include a <p> tag in the summary', function() {
            var doclet = {
                description: '<p>This description contains HTML.</p><p>And plenty of it!</p>'
            };
            handler({ doclet: doclet });

            expect(doclet.summary).toBe('This description contains HTML.');
        });
    });
});

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0072 ]--