Skip to content

Commit 9a0ff6a

Browse files
committed
chore: Restructured test Fortran code
Split Fortran source code into: - syntax - format - lint To keep the grammar tests more focused.
1 parent 11df362 commit 9a0ff6a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+67
-539
lines changed

.vscode/launch.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"request": "launch",
1919
"runtimeExecutable": "${execPath}",
2020
"args": [
21-
"${workspaceFolder}/test/resources",
21+
"${workspaceFolder}/test/fortran",
2222
"--disable-extension=fortran-lang.linter-gfortran",
2323
"--extensionDevelopmentPath=${workspaceFolder}",
2424
"--extensionTestsPath=${workspaceFolder}/out/test"

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -515,8 +515,8 @@
515515
"webpack": "webpack --mode production",
516516
"pretest": "npm run compile-dev && tsc -p tsconfig.test.json",
517517
"test": "node ./out/test/runTest.js",
518-
"test:grammar-free": "vscode-tmgrammar-snap -s source.fortran.free -g ./syntaxes/fortran_free-form.tmLanguage.json \"./test/**/*{.f90,F90}\"",
519-
"test:grammar-fixed": "vscode-tmgrammar-snap -s source.fortran.fixed -g ./syntaxes/fortran_fixed-form.tmLanguage.json \"./test/**/*{.f,F}\"",
518+
"test:grammar-free": "vscode-tmgrammar-snap -s source.fortran.free -g ./syntaxes/fortran_free-form.tmLanguage.json \"./test/fortran/syntax/**/*{.f90,F90}\"",
519+
"test:grammar-fixed": "vscode-tmgrammar-snap -s source.fortran.fixed -g ./syntaxes/fortran_fixed-form.tmLanguage.json \"./test/fortran/syntax/**/*{.f,F}\"",
520520
"test:grammar": "npm run test:grammar-free && npm run test:grammar-fixed",
521521
"test:grammar-update": "npm run test:grammar-free -- -u && npm run test:grammar-fixed -- -u",
522522
"lint": "eslint . --ext .ts,.tsx",

test/extension.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { FortranDocumentSymbolProvider } from '../src/features/document-symbol-p
1515
// Defines a Mocha test suite to group tests of similar kind together
1616
suite('Extension Tests', () => {
1717
test('symbol provider works as expected', async () => {
18-
const filePath = path.resolve(__dirname, '../../test/resources/sample.f90');
18+
const filePath = path.resolve(__dirname, '../../test/fortran/sample.f90');
1919
const openPath = vscode.Uri.file(filePath);
2020
const doc = await vscode.workspace.openTextDocument(openPath);
2121
vscode.window.showTextDocument(doc);

test/formatting-provider.test.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ suite('Formatting tests', () => {
99
let doc: vscode.TextDocument;
1010
const fmt = new FortranFormattingProvider(new LoggingService());
1111
const fileUri = vscode.Uri.file(
12-
path.resolve(__dirname, '../../test/resources/formatting_test.f90')
12+
path.resolve(__dirname, '../../test/fortran/format/formatting_test.f90')
1313
);
1414

1515
suiteSetup(async function (): Promise<void> {
@@ -62,7 +62,10 @@ end program main
6262
test(`Using fprettify with stderr`, async () => {
6363
doc = await vscode.workspace.openTextDocument(
6464
vscode.Uri.file(
65-
path.resolve(__dirname, '../../test/resources/formatting_test_fprettify_long_lines.f90')
65+
path.resolve(
66+
__dirname,
67+
'../../test/fortran/format/formatting_test_fprettify_long_lines.f90'
68+
)
6669
)
6770
);
6871
const edits = await fmt['doFormatFprettify'](doc);
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

test/fortran/lint/err-mod.f90

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module err_mod
2+
private
3+
implicit none
4+
contains
5+
subroutine foo(arg1, arg2)
6+
integer, intent(in) :: arg1, arg2
7+
print*, 'arg1:', arg1, 'arg2:', arg2
8+
end subroutine foo
9+
subroutine proc_with_err()
10+
call foo()
11+
end subroutine proc_with_err
12+
end module err_mod

test/fortran/lint/err-warns.f90

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
program main
2+
call say_hello(1,2)
3+
contains
4+
subroutine say_hello(a,b)
5+
integer :: a,b
6+
print *, "Hello, World!"
7+
end subroutine say_hello
8+
end program main

test/fortran/lint/test1.f90

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
module test
2+
intrinsic :: size
3+
end module test
4+
5+
program test_literals
6+
use iso_c_binding
7+
use test, only: fsize => size
8+
9+
implicit none
10+
integer(c_int) :: ierr
11+
integer :: i, j
12+
integer, allocatable :: a(:,:)
13+
a = reshape([1, 2, 3, 4, 5, 6], [2, 3])
14+
print*, size(a), size(a, 1), size(a, 2)
15+
print*, "loop over array ranks"
16+
do i = 1, size(a, 2)
17+
print*, a(:, i)
18+
end do
19+
print*, "end looping over array ranks"
20+
21+
call foo(a, )
22+
contains
23+
subroutine foo(pair)
24+
integer, dimension(*), intent(in) :: pair
25+
print*, pair(1:6)
26+
end subroutine foo
27+
end program test_literals
File renamed without changes.

test/fortran/syntax/Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
3+
clean:
4+
rm -f *.o *.out *.mod *.smod
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

test/linter-provider.test.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ suite('GNU (gfortran) lint preprocessor multiple', () => {
161161
const linter = new FortranLintingProvider();
162162
linter['compiler'] = 'gfortran';
163163
const msg = `
164-
f951: Warning: Nonexistent include directory '/Code/TypeScript/vscode-fortran-support/test/resources/include' [-Wmissing-include-dirs]
165-
/Code/TypeScript/vscode-fortran-support/test/resources/sample.f90:4:18:
164+
f951: Warning: Nonexistent include directory '/Code/TypeScript/vscode-fortran-support/test/fortran/include' [-Wmissing-include-dirs]
165+
/Code/TypeScript/vscode-fortran-support/test/fortran/sample.f90:4:18:
166166
167167
4 | call say_hello()
168168
| 1
@@ -187,12 +187,12 @@ Error: Missing actual argument for argument 'a' at (1)
187187
test('REGEX: match 1 - message <msg2>', () => {
188188
strictEqual(
189189
g1['msg2'],
190-
"Nonexistent include directory '/Code/TypeScript/vscode-fortran-support/test/resources/include' [-Wmissing-include-dirs]"
190+
"Nonexistent include directory '/Code/TypeScript/vscode-fortran-support/test/fortran/include' [-Wmissing-include-dirs]"
191191
);
192192
});
193193
const g2 = matches[1].groups;
194194
test('REGEX: match 2 - filename', () => {
195-
strictEqual(g2['fname'], '/Code/TypeScript/vscode-fortran-support/test/resources/sample.f90');
195+
strictEqual(g2['fname'], '/Code/TypeScript/vscode-fortran-support/test/fortran/sample.f90');
196196
});
197197
test('REGEX: match 2 - line number', () => {
198198
strictEqual(g2['ln'], '4');
@@ -212,7 +212,7 @@ Error: Missing actual argument for argument 'a' at (1)
212212
const ref = [
213213
new Diagnostic(
214214
new Range(new Position(0, 1), new Position(0, 1)),
215-
"Nonexistent include directory '/Code/TypeScript/vscode-fortran-support/test/resources/include' [-Wmissing-include-dirs]",
215+
"Nonexistent include directory '/Code/TypeScript/vscode-fortran-support/test/fortran/include' [-Wmissing-include-dirs]",
216216
DiagnosticSeverity.Warning
217217
),
218218
new Diagnostic(

test/lsp-client.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ suite('Language Server integration tests', () => {
1010
let doc: vscode.TextDocument;
1111
const server = new FortlsClient(new LoggingService());
1212
const fileUri = vscode.Uri.file(
13-
path.resolve(__dirname, '../../test/resources/function_subroutine_definitions.f90')
13+
path.resolve(__dirname, '../../test/fortran/function_subroutine_definitions.f90')
1414
);
1515

1616
suiteSetup(async function (): Promise<void> {

test/resources/formatting_test.f90.snap

-64
This file was deleted.

test/resources/formatting_test_fprettify_long_lines.f90.snap

-21
This file was deleted.

0 commit comments

Comments
 (0)