Ejemplo n.º 1
0
def validate_testcases(dirname):
    print(u'Testcase validation\n')
    gs = GrammarStore()

    print(u'\nRunning Testcases')
    testcases = os.path.join(dirname, u'Testcases')
    for name in os.listdir(testcases):
        if name != u'.DS_Store' and os.path.splitext(name)[1] != u'.xml':
            testfile = os.path.join(testcases, name)
            checkfile = os.path.splitext(testfile)[0] + u'.xml'
            if os.path.isfile(testfile):
                if os.path.isfile(checkfile):
                    with open(checkfile, u'rt') as f:
                        check = f.read()
                    try:
                        with open(testfile, u'rt') as f:
                            debug_stream = StringIO()
                            fmt = DebugFormatter(debug_stream)
                            gs.parse_document(testfile, f, fmt)
                        if check == debug_stream.getvalue():
                            print(u'✓ success: %s' % name)
                        else:
                            print(u'✗ failure, output has changed: %s' % name)
                    except:
                        print(u'✗ failure, exception: %s' % name)
                else:
                    print(u'✗ failure, no check file for: %s' % name)
Ejemplo n.º 2
0
def validate_testcases(dirname):
    print(u'Testcase validation\n')
    gs = GrammarStore()

    print(u'\nRunning Testcases')
    testcases = os.path.join(dirname, u'Testcases')
    for name in os.listdir(testcases):
        if name != u'.DS_Store' and os.path.splitext(name)[1] != u'.xml':
            testfile = os.path.join(testcases, name)
            checkfile = os.path.splitext(testfile)[0] + u'.xml'
            if os.path.isfile(testfile):
                if os.path.isfile(checkfile):
                    with open(checkfile, u'rt') as f:
                        check = f.read()
                    try:
                        with open(testfile, u'rt') as f:
                            debug_stream = StringIO()
                            fmt = DebugFormatter(debug_stream)
                            gs.parse_document(testfile, f, fmt)
                        if check == debug_stream.getvalue():
                            print(u'✓ success: %s' % name)
                        else:
                            print(u'✗ failure, output has changed: %s' % name)
                    except:
                        print(u'✗ failure, exception: %s' % name)
                else:
                    print(u'✗ failure, no check file for: %s' % name)
Ejemplo n.º 3
0
if __name__ == u'__main__':
    if len(sys.argv) > 1:
        if len(sys.argv) == 2 and sys.argv[1] == u'test':
            dirname = os.path.dirname(os.path.realpath(sys.argv[0]))
            validate_testcases(dirname)

        elif len(sys.argv) == 3 and sys.argv[1] == u'debug' or sys.argv[1] == u'create':
            testfile = sys.argv[2]
            checkfile = os.path.splitext(testfile)[0] + u'.xml'

            gs = GrammarStore()
            ts = ThemeStore()
            debug_stream = StringIO()
            fmt = DebugFormatter(debug_stream, theme=ts.themes.values()[0])
            with open(testfile, u'rt') as f:
                gs.parse_document(testfile, f, fmt)

            # validate all content against original document
            original = u''
            with open(testfile, u'rt') as f:
                original = f.read()
            if fmt.content == original:
                print(u'✓ content is identical')
            else:
                print(u'✗ content is not identical to original')

            if sys.argv[1] == u'create':
                with open(checkfile, u'wb') as f:
                    f.write(debug_stream.getvalue())
        else:
            usage(sys.argv[0])
Ejemplo n.º 4
0
    if len(sys.argv) > 1:
        if len(sys.argv) == 2 and sys.argv[1] == u'test':
            dirname = os.path.dirname(os.path.realpath(sys.argv[0]))
            validate_testcases(dirname)

        elif len(sys.argv) == 3 and sys.argv[1] == u'debug' or sys.argv[
                1] == u'create':
            testfile = sys.argv[2]
            checkfile = os.path.splitext(testfile)[0] + u'.xml'

            gs = GrammarStore()
            ts = ThemeStore()
            debug_stream = StringIO()
            fmt = DebugFormatter(debug_stream, theme=ts.themes.values()[0])
            with open(testfile, u'rt') as f:
                gs.parse_document(testfile, f, fmt)

            # validate all content against original document
            original = u''
            with open(testfile, u'rt') as f:
                original = f.read()
            if fmt.content == original:
                print(u'✓ content is identical')
            else:
                print(u'✗ content is not identical to original')

            if sys.argv[1] == u'create':
                with open(checkfile, u'wb') as f:
                    f.write(debug_stream.getvalue())
        else:
            usage(sys.argv[0])
Ejemplo n.º 5
0
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->

<html lang="en">
    <head>
        <link rel="stylesheet" type="text/css" href="%s">
    </head>
    <body>
''' % cssfn)

            css = open(cssfn, u'wt+')
            fmt = HTMLFormatter(html, css, theme, tab=4)
            gs.parse_document(infn, f, fmt)
            css.close()

            html.write(u'''
    </body>
</html>
''')
            html.close()
Ejemplo n.º 6
0
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->

<html lang="en">
    <head>
        <link rel="stylesheet" type="text/css" href="%s">
    </head>
    <body>
''' % cssfn)

            css = open(cssfn, u'wt+')
            fmt = HTMLFormatter(html, css, theme, tab=4)
            gs.parse_document(infn, f, fmt)
            css.close()

            html.write(u'''
    </body>
</html>
''')
            html.close()