Package org.skife.jdbi.v2.unstable.grammar

Source Code of org.skife.jdbi.v2.unstable.grammar.TestPrintfGrammar

/*
* Copyright 2004-2007 Brian McCallister
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.skife.jdbi.v2.unstable.grammar;

import antlr.CharScanner;
import org.skife.jdbi.rewriter.printf.FormattedStatementLexer;
import static org.skife.jdbi.rewriter.printf.FormattedStatementLexerTokenTypes.*;

import java.io.Reader;

/**
*
*/
public class TestPrintfGrammar extends GrammarTestCase
{

    public void testFoo() throws Exception
    {
        expect("select id from something where name like '%d' and id = %d and name like %s",
               LITERAL, QUOTED_TEXT, LITERAL, INTEGER, LITERAL, STRING, EOF);
    }

    protected String nameOf(int type)
    {
        switch (type) {
            case QUOTED_TEXT:
                return "QUOTED_TEXT";
            case INTEGER:
                return "INTEGER";
            case STRING:
                return "STRING";
            case LITERAL:
                return "LITERAL";
            case EOF:
                return "EOF";
        }
        return "unknown";
    }


    protected CharScanner createLexer(Reader r)
    {
        return new FormattedStatementLexer(r);
    }
}
TOP

Related Classes of org.skife.jdbi.v2.unstable.grammar.TestPrintfGrammar

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.