Sha256: 7c9bbb59b86e5abba19cfcddf20c941aa25213625e3bf287a607c9bcfbc09c15

Contents?: true

Size: 1.63 KB

Versions: 79

Compression:

Stored size: 1.63 KB

Contents

require 'helper'

module Journey
  module Definition
    class TestScanner < MiniTest::Unit::TestCase
      def setup
        @scanner = Scanner.new
      end

      # /page/:id(/:action)(.:format)
      def test_tokens
        [
          ['/',      [[:SLASH, '/']]],
          ['*omg',   [[:STAR, '*'], [:LITERAL, 'omg']]],
          ['/page',  [[:SLASH, '/'], [:LITERAL, 'page']]],
          ['/~page', [[:SLASH, '/'], [:LITERAL, '~page']]],
          ['/pa-ge', [[:SLASH, '/'], [:LITERAL, 'pa-ge']]],
          ['/:page', [[:SLASH, '/'], [:SYMBOL, ':page']]],
          ['/(:page)', [
                        [:SLASH, '/'],
                        [:LPAREN, '('],
                        [:SYMBOL, ':page'],
                        [:RPAREN, ')'],
                      ]],
          ['(/:action)', [
                          [:LPAREN, '('],
                          [:SLASH, '/'],
                          [:SYMBOL, ':action'],
                          [:RPAREN, ')'],
                         ]],
          ['(())', [[:LPAREN, '('],
                   [:LPAREN, '('], [:RPAREN, ')'], [:RPAREN, ')']]],
          ['(.:format)', [
                          [:LPAREN, '('],
                          [:DOT, '.'],
                          [:SYMBOL, ':format'],
                          [:RPAREN, ')'],
                        ]],
        ].each do |str, expected|
          @scanner.scan_setup str
          assert_tokens expected, @scanner
        end
      end

      def assert_tokens tokens, scanner
        toks = []
        while tok = scanner.next_token
          toks << tok
        end
        assert_equal tokens, toks
      end
    end
  end
end

Version data entries

79 entries across 58 versions & 18 rubygems

Version Path
sunrise-cms-0.3.2 vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/test/route/definition/test_scanner.rb
sunrise-cms-0.3.2 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/test/route/definition/test_scanner.rb
sunrise-cms-0.3.1 vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/test/route/definition/test_scanner.rb
sunrise-cms-0.3.1 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/test/route/definition/test_scanner.rb
sunrise-cms-0.3.0 vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/test/route/definition/test_scanner.rb
sunrise-cms-0.3.0 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/test/route/definition/test_scanner.rb
rails-uploader-0.0.4 vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/test/route/definition/test_scanner.rb
rails-uploader-0.0.4 vendor/bundle/ruby/1.9.1/gems/journey-1.0.4/test/route/definition/test_scanner.rb
journey-1.0.4 test/route/definition/test_scanner.rb
challah-0.6.1 vendor/bundle/gems/journey-1.0.3/test/route/definition/test_scanner.rb
sunrise-cms-0.3.0.rc vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/test/route/definition/test_scanner.rb
sunrise-cms-0.3.0.rc vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/test/route/definition/test_scanner.rb
rails-uploader-0.0.1 vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/test/route/definition/test_scanner.rb
challah-0.6.0 vendor/bundle/gems/journey-1.0.3/test/route/definition/test_scanner.rb
challah-0.5.4 vendor/bundle/gems/journey-1.0.3/test/route/definition/test_scanner.rb
challah-0.5.3 vendor/bundle/gems/journey-1.0.3/test/route/definition/test_scanner.rb
challah-0.5.2 vendor/bundle/gems/journey-1.0.3/test/route/definition/test_scanner.rb
challah-0.5.1 vendor/bundle/gems/journey-1.0.3/test/route/definition/test_scanner.rb
journey-1.0.3 test/route/definition/test_scanner.rb