-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 1537 get list of validators that couldnt run because of a parsi…
…ng problem (#1565) * update comments for skippedValidator * added in validators with parsing errors logic and fixed tests * continue fix broken tests * applied the same logic to singleEntityValidators * fix RunTimeException ClassCastError * use Mockito's ArgumentCaptor to capture the argument for fixing "Strict stubbing argument mismatch" error * minor change * formatted code * renamed validatorsWithParsingErrors to singleFileValidatorsWithParsingErrors * renamed skippedFileValidators to multiFileValidatorsWithParsingErrors formatted code * combine three types of validators with parsing errors together and output validators that couldn't run due to parsing problems * renamed skippedValidators to multiFileValidatorsWithParsingErrors * formatted code * Added a test for single file skipped validators. Reformatted the output --------- Co-authored-by: jcpitre <[email protected]> Co-authored-by: jcpitre <[email protected]>
- Loading branch information
1 parent
8834684
commit 57eed2f
Showing
14 changed files
with
428 additions
and
63 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
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
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
36 changes: 36 additions & 0 deletions
36
core/src/test/java/org/mobilitydata/gtfsvalidator/testgtfs/GtfsTestMultiFileValidator.java
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,36 @@ | ||
/* | ||
* Copyright 2021 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.mobilitydata.gtfsvalidator.testgtfs; | ||
|
||
import javax.inject.Inject; | ||
import org.mobilitydata.gtfsvalidator.notice.NoticeContainer; | ||
import org.mobilitydata.gtfsvalidator.validator.FileValidator; | ||
|
||
public class GtfsTestMultiFileValidator extends FileValidator { | ||
|
||
private final GtfsTestTableContainer table; | ||
private final GtfsTestTableContainer2 unparsableTable; | ||
|
||
@Inject | ||
public GtfsTestMultiFileValidator(GtfsTestTableContainer table, GtfsTestTableContainer2 table2) { | ||
this.table = table; | ||
this.unparsableTable = table2; | ||
} | ||
|
||
@Override | ||
public void validate(NoticeContainer noticeContainer) {} | ||
} |
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
Oops, something went wrong.