jashkenas--coffeescript/test/strings.coffee

283 lines
5.3 KiB
CoffeeScript
Raw Normal View History

2010-12-29 05:48:54 +00:00
# String Literals
# ---------------
# TODO: refactor string literal tests
2011-01-03 09:17:00 +00:00
# TODO: add indexing and method invocation tests: "string"["toString"] is String::toString, "string".toString() is "string"
2010-12-29 05:48:54 +00:00
# * Strings
# * Heredocs
2010-12-31 03:48:31 +00:00
test "backslash escapes", ->
eq "\\/\\\\", /\/\\/.source
2010-12-29 05:48:54 +00:00
eq '(((dollars)))', '\(\(\(dollars\)\)\)'
eq 'one two three', "one
two
three"
eq "four five", 'four
five'
2013-11-19 00:04:17 +00:00
test "#3229, multiline strings", ->
# Separate lines by default by a single space in literal strings.
2013-11-18 04:32:15 +00:00
eq 'one
two', 'one two'
eq "one
two", 'one two'
2013-11-19 00:04:17 +00:00
eq '
a
b
', 'a b'
eq "
a
b
", 'a b'
eq 'one
two', 'one two'
eq "one
two", 'one two'
eq '
indentation
doesn\'t
matter', 'indentation doesn\'t matter'
eq 'trailing ws
doesn\'t matter', 'trailing ws doesn\'t matter'
2013-11-19 00:04:17 +00:00
# Use backslashes at the end of a line to specify whitespace between lines.
2013-11-18 04:32:15 +00:00
eq 'a \
b\
c \
d', 'a bc d'
eq "a \
b\
c \
d", 'a bc d'
2013-11-19 00:04:17 +00:00
eq 'ignore \
trailing whitespace', 'ignore trailing whitespace'
2013-11-18 04:32:15 +00:00
2013-11-19 00:04:17 +00:00
# Backslash at the beginning of a literal string.
eq '\
ok', 'ok'
eq ' \
ok', ' ok'
2013-11-18 04:32:15 +00:00
# #1273, empty strings.
eq '\
', ''
eq '
', ''
eq '
', ''
eq ' ', ' '
2013-11-19 00:04:17 +00:00
# Same behavior in interpolated strings.
2013-11-18 04:32:15 +00:00
eq "interpolation #{1}
follows #{2} \
too #{3}\
!", 'interpolation 1 follows 2 too 3!'
2013-11-18 15:25:11 +00:00
eq "a #{
'string ' + "inside
interpolation"
}", "a string inside interpolation"
eq "
#{1}
", '1'
2013-11-19 00:04:17 +00:00
# Handle escaped backslashes correctly.
eq '\\', `'\\'`
2013-11-19 00:04:17 +00:00
eq 'escaped backslash at EOL\\
next line', 'escaped backslash at EOL\\ next line'
eq '\\
next line', '\\ next line'
eq '\\
', '\\'
eq '\\\\\\
', '\\\\\\'
2013-11-19 00:04:17 +00:00
eq "#{1}\\
after interpolation", '1\\ after interpolation'
eq 'escaped backslash before slash\\ \
next line', 'escaped backslash before slash\\ next line'
eq 'triple backslash\\\
next line', 'triple backslash\\next line'
eq 'several escaped backslashes\\\\\\
ok', 'several escaped backslashes\\\\\\ ok'
eq 'several escaped backslashes slash\\\\\\\
ok', 'several escaped backslashes slash\\\\\\ok'
eq 'several escaped backslashes with trailing ws \\\\\\
ok', 'several escaped backslashes with trailing ws \\\\\\ ok'
2013-11-19 00:04:17 +00:00
# Backslashes at beginning of lines.
2013-11-19 00:04:17 +00:00
eq 'first line
\ backslash at BOL', 'first line \ backslash at BOL'
eq 'first line\
\ backslash at BOL', 'first line\ backslash at BOL'
# Edge case.
eq 'lone
\
backslash', 'lone backslash'
test "#3249, escape newlines in heredocs with backslashes", ->
# Ignore escaped newlines
eq '''
Set whitespace \
<- this is ignored\
none
normal indentation
''', 'Set whitespace <- this is ignorednone\n normal indentation'
eq """
Set whitespace \
<- this is ignored\
none
normal indentation
""", 'Set whitespace <- this is ignorednone\n normal indentation'
# Changed from #647, trailing backslash.
eq '''
Hello, World\
''', 'Hello, World'
eq '''
\\
''', '\\'
# Backslash at the beginning of a literal string.
eq '''\
ok''', 'ok'
eq ''' \
ok''', ' ok'
# Same behavior in interpolated strings.
eq """
interpolation #{1}
follows #{2} \
too #{3}\
!
""", 'interpolation 1\n follows 2 too 3!'
eq """
#{1} #{2}
""", '\n1 2\n'
# TODO: uncomment when #2388 is fixed
# eq """a heredoc #{
# "inside \
# interpolation"
# }""", "a heredoc inside interpolation"
# Handle escaped backslashes correctly.
eq '''
escaped backslash at EOL\\
next line
''', 'escaped backslash at EOL\\\n next line'
eq '''\\
''', '\\\n'
# Backslashes at beginning of lines.
eq '''first line
\ backslash at BOL''', 'first line\n\ backslash at BOL'
eq """first line\
\ backslash at BOL""", 'first line\ backslash at BOL'
# Edge cases.
eq '''lone
\
backslash''', 'lone\n\n backslash'
eq '''\
''', ''
2013-11-18 04:32:15 +00:00
2010-12-29 05:48:54 +00:00
#647
eq "''Hello, World\\''", '''
'\'Hello, World\\\''
'''
eq '""Hello, World\\""', """
"\"Hello, World\\\""
"""
test "#1273, escaping quotes at the end of heredocs.", ->
# """\""" no longer compiles
eq """\\""", '\\'
eq """\\\"""", '\\\"'
2010-12-29 05:48:54 +00:00
a = """
basic heredoc
on two lines
"""
ok a is "basic heredoc\non two lines"
a = '''
a
"b
c
'''
ok a is "a\n \"b\nc"
a = """
a
b
c
"""
ok a is "a\n b\n c"
a = '''one-liner'''
ok a is 'one-liner'
a = """
out
here
"""
ok a is "out\nhere"
a = '''
a
b
c
'''
ok a is " a\n b\nc"
a = '''
a
b c
'''
ok a is "a\n\n\nb c"
a = '''more"than"one"quote'''
ok a is 'more"than"one"quote'
a = '''here's an apostrophe'''
ok a is "here's an apostrophe"
# The indentation detector ignores blank lines without trailing whitespace
a = """
one
two
"""
ok a is "one\ntwo\n"
eq ''' line 0
should not be relevant
to the indent level
2013-11-18 16:26:48 +00:00
''', ' line 0\nshould not be relevant\n to the indent level'
2010-12-29 05:48:54 +00:00
eq ''' '\\\' ''', " '\\' "
eq """ "\\\" """, ' "\\" '
eq ''' <- keep these spaces -> ''', ' <- keep these spaces -> '
2011-01-15 15:57:50 +00:00
test "#1046, empty string interpolations", ->
eq "#{ }", ''