-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(grammar): Improve support for TO_YMINTERVAL syntax
- Loading branch information
Showing
4 changed files
with
55 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
...src/test/kotlin/org/sonar/plugins/plsqlopen/api/expressions/ToYmintervalExpressionTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/** | ||
* Z PL/SQL Analyzer | ||
* Copyright (C) 2015-2024 Felipe Zorzo | ||
* mailto:felipe AT felipezorzo DOT com DOT br | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3 of the License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this program; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
*/ | ||
package org.sonar.plugins.plsqlopen.api.expressions | ||
|
||
import com.felipebz.flr.tests.Assertions.assertThat | ||
import org.junit.jupiter.api.BeforeEach | ||
import org.junit.jupiter.api.Test | ||
import org.sonar.plugins.plsqlopen.api.PlSqlGrammar | ||
import org.sonar.plugins.plsqlopen.api.RuleTest | ||
|
||
class ToYmintervalExpressionTest : RuleTest() { | ||
|
||
@BeforeEach | ||
fun init() { | ||
setRootRule(PlSqlGrammar.EXPRESSION) | ||
} | ||
|
||
@Test | ||
fun matchesSimple() { | ||
assertThat(p).matches("to_yminterval(foo)") | ||
} | ||
|
||
@Test | ||
fun matchesDefaultClause() { | ||
assertThat(p).matches("to_yminterval(foo default '00-00' on conversion error)") | ||
} | ||
|
||
} |