Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tests #5

Closed
wants to merge 1 commit into from
Closed

Fix tests #5

wants to merge 1 commit into from

Conversation

jerrymarino
Copy link
Collaborator

We have missed a few things which broke the tests and Makefile

Make sure tests are passing, and fix a hash issue which impacted
ios-app.

if parent.pathExtension != ext && url.absoluteString.contains(ext) {
(ext, dotExt) in
if parent.pathExtension != ext &&
url.absoluteString.contains(dotExt) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it would be cleaner to check if there is a path component that ends with the extension

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree and that had a major performance hit

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we just add it as an additional && to this statement? That way you'll only walk the path components of a path that includes the extension

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do you think the suggested code would do when we have a path containing pinterest/ios/app?

The code checks for material within some.app, not for paths that include app.

Also, as I mentioned, the effect of creating pathComponents was a major performance hit.

@@ -369,11 +369,13 @@ enum Generator {
// Skip hashing children of Xcode directory like files
private static let xcodeDirExtensions = ["app", "appex", "bundle", "framework", "octest",
"xcassets", "xcodeproj", "xcdatamodel", "xcdatamodeld",
"xcmappingmodel", "xctest", "xcstickers", "xpc", "scnassets" ]
"xcmappingmodel", "xctest", "xcstickers", "xpc", "scnassets" ].map { ($0, "." + $0 ) }
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think there is there a lot of value into having a tuple to add a "." prefix

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Checkout how the previous line of code is consuming this - it is needed.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And by previous, I mean 376 😄

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see how it's used but it just seems a bit strange for a list ofxcodeDirExtensions to have two representations of it. If you really want that then you should probably just create struct type wrapper that has a convenience method for the extension prefixed with .

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

We have missed a few things which broke the tests and Makefile

Make sure tests are passing, and fix a hash issue which impacted
ios-app.
@jerrymarino jerrymarino deleted the jmarino_fix_tests branch March 23, 2018 00:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants