Skip to content

Commit

Permalink
Merge pull request #98 from actions/csc-testing
Browse files Browse the repository at this point in the history
Update install-dotnet.ps1 and add csc tests
  • Loading branch information
Zachary Eisinger authored and GitHub committed Jun 12, 2020
2 parents 73683e5 + 232f64b commit a4ec206
Show file tree
Hide file tree
Showing 2 changed files with 902 additions and 686 deletions.
23 changes: 23 additions & 0 deletions __tests__/csc.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import fs = require('fs');

describe('csc tests', () => {
it('Valid regular expression', async () => {
var cscFile = require('../.github/csc.json');
var regex = cscFile['problemMatcher'][0]['pattern'][0]['regexp'];

console.log(regex);
var re = new RegExp(regex);

// Ideally we would verify that this
var stringsToMatch = [
'Program.cs(10,79): error CS1002: ; expected [/Users/zacharyeisinger/Documents/repo/setup-dotnet/__tests__/sample-broken-csproj/sample.csproj]',
"S:\\Msbuild\\src\\Build\\Evaluation\\ExpressionShredder.cs(33,7): error CS1003: Syntax error, ',' expected [S:\\msbuild\\src\\Build\\Microsoft.Build.csproj > Properties:prop]"
];

stringsToMatch.forEach(string => {
var matchStr = string.match(re);
console.log(matchStr);
expect(matchStr).toEqual(expect.anything());
});
}, 10000);
});
Loading

0 comments on commit a4ec206

Please sign in to comment.