!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)

/usr/lib/python3/dist-packages/macaroonbakery/tests/   drwxr-xr-x
Free 13.27 GB of 57.97 GB (22.89%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     test_namespace.py (1.87 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
# Copyright 2017 Canonical Ltd.
# Licensed under the LGPLv3, see LICENCE file for details.
from unittest import TestCase

import macaroonbakery.checkers as checkers


class TestNamespace(TestCase):
    def test_serialize(self):
        tests = [
            ('empty namespace', None, b''),
            ('standard namespace', {'std': ''}, b'std:'),
            ('several elements', {
                'std': '',
                'http://blah.blah': 'blah',
                'one': 'two',
                'foo.com/x.v0.1': 'z',
            }, b'foo.com/x.v0.1:z http://blah.blah:blah one:two std:'),
            ('sort by URI not by field', {
                'a': 'one',
                'a1': 'two',
            }, b'a:one a1:two')
        ]
        for test in tests:
            ns = checkers.Namespace(test[1])
            data = ns.serialize_text()
            self.assertEquals(data, test[2])
            self.assertEquals(str(ns), test[2].decode('utf-8'))

        # Check that it can be deserialize to the same thing:
        ns1 = checkers.deserialize_namespace(data)
        self.assertEquals(ns1, ns)

    # TODO(rogpeppe) add resolve tests

    def test_register(self):
        ns = checkers.Namespace(None)
        ns.register('testns', 't')
        prefix = ns.resolve('testns')
        self.assertEquals(prefix, 't')

        ns.register('other', 'o')
        prefix = ns.resolve('other')
        self.assertEquals(prefix, 'o')

        # If we re-register the same URL, it does nothing.
        ns.register('other', 'p')
        prefix = ns.resolve('other')
        self.assertEquals(prefix, 'o')

    def test_register_bad_uri(self):
        ns = checkers.Namespace(None)
        with self.assertRaises(KeyError):
            ns.register('', 'x')

    def test_register_bad_prefix(self):
        ns = checkers.Namespace(None)
        with self.assertRaises(ValueError):
            ns.register('std', 'x:1')

:: 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.0037 ]--