aboutsummaryrefslogtreecommitdiff
path: root/ktlint-ruleset-standard/src/test/kotlin/com/github/shyiko/ktlint/ruleset/standard/CommentSpacingRuleTest.kt
blob: 7adaf56d8886de967a5f90c92fb18a923402b0a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.github.shyiko.ktlint.ruleset.standard

import com.github.shyiko.ktlint.core.LintError
import com.github.shyiko.ktlint.test.format
import com.github.shyiko.ktlint.test.lint
import org.assertj.core.api.Assertions.assertThat
import org.testng.annotations.Test

class CommentSpacingRuleTest {

    @Test
    fun testLintValidCommentSpacing() {
        assertThat(CommentSpacingRule().lint(
            """
                // comment
                var debugging = false // comment
                var debugging = false // comment//word
                    // comment
            """.trimIndent()
        )).isEmpty()
    }

    @Test
    fun testLintInvalidCommentSpacing() {
        assertThat(CommentSpacingRule().lint(
            """
                //comment
                var debugging = false// comment
                var debugging = false //comment
                var debugging = false//comment
                    //comment
            """.trimIndent()
        )).isEqualTo(listOf(
            LintError(1, 1, "comment-spacing", "Missing space after double slash in end of line comment"),
            LintError(2, 22, "comment-spacing", "Missing space before end of line comment"),
            LintError(3, 23, "comment-spacing", "Missing space after double slash in end of line comment"),
            LintError(4, 22, "comment-spacing", "Missing space before end of line comment"),
            LintError(4, 22, "comment-spacing", "Missing space after double slash in end of line comment"),
            LintError(5, 5, "comment-spacing", "Missing space after double slash in end of line comment")
        ))
    }

    @Test
    fun testFormatInvalidCommentSpacing() {
        assertThat(CommentSpacingRule().format(
            """
                //comment
                var debugging = false// comment
                var debugging = false //comment
                var debugging = false//comment
                    //comment
            """.trimIndent()
        )).isEqualTo(
            """
                // comment
                var debugging = false // comment
                var debugging = false // comment
                var debugging = false // comment
                    // comment
            """.trimIndent()
        )
    }
}