Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

WIP: add E2E test suite unrelated to docs examples #9557

Closed
wants to merge 14 commits into from

Conversation

caitp
Copy link
Contributor

@caitp caitp commented Oct 10, 2014

This is ongoing, bear with me while I hack on this :<

@tbosch tbosch self-assigned this Oct 10, 2014
@tbosch tbosch added this to the Backlog milestone Oct 10, 2014
@tbosch tbosch removed their assignment Oct 10, 2014
@caitp caitp force-pushed the issue-9527 branch 2 times, most recently from 61d2143 to a092380 Compare October 15, 2014 18:04
@caitp
Copy link
Contributor Author

caitp commented Oct 15, 2014

So this is basically working --- the downside is that it makes the builds take significantly (~2min) longer.

We can probably optimize this by keeping the SL connections alive, and only booting up one webserver to share for the two tasks.

@caitp
Copy link
Contributor Author

caitp commented Oct 15, 2014

@juliemr could you review and help get this running a bit quicker?

@juliemr juliemr self-assigned this Oct 15, 2014
['webdriver', 'connect:testserver', 'protractor-docs:normal']);
grunt.registerTask('test:travis-protractor-docs', 'Run the end to end docs tests with Protractor for Travis CI builds', ['connect:testserver', 'protractor-docs:travis']);
grunt.registerTask('test:ci-protractor-docs', 'Run the end to end docs tests with Protractor for Jenkins CI builds', ['webdriver', 'connect:testserver', 'protractor-docs:jenkins']);
grunt.registerTask('test:docs-e2e', 'Alias for test:protractor', ['test:protractor-docs']);
Copy link
Member

Choose a reason for hiding this comment

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

should be 'Alias for test:protractor-docs'

@juliemr
Copy link
Member

juliemr commented Oct 16, 2014

I think you've got the right plan - I'm not sure why this needs to be in a different config file. Using the same one would get you the SL resuse and webserver reuse, and you can run subsets of the specs via the command line using --specs=... or we could define suites and use --suite=docs or something.

return next('Fixture ' + match[1] + ' not found.');
}
} else if ((match = static_regexp.exec(basicUrl))) {
var rewritten = util.rewriteTestFile(match[1], match[2]);
Copy link
Member

Choose a reason for hiding this comment

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

I am not sure what base is used for, but it seems that rewriteTestFile will ignore it (and always use '/e2e').
(Haven't taken a proper look yet, so this might be intended.)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

This is intended.

There are two "base directories", one is the virtual root of E2E tests, and one is the root of the project tree. Static files are served relative to the root of the project tree, so we rewrite relative to that.

@petebacondarwin
Copy link
Contributor

Is the point of this PR to allow us to write E2E tests that are not part of examples?

If so, then how about we just use the infrastructure that is in dgeni (and the current AngularJS e2e test run) already to generate and execute the protractor tests by simply adding a new fileReader into the dgeni build that can read in new protractor tests from a separate folder, rather than extracting them from inline tags? It could generate any set of deployments you wish, including production CDN based ones.

Am I missing something here?

@caitp
Copy link
Contributor Author

caitp commented Oct 17, 2014

That would be more complicated --- I think using localhost:8000 as the baseUrl in all cases makes good sense though. It's really weird that anything in dgeni-packages needs to change to accommodate that, that's probably not a good sign.

@petebacondarwin
Copy link
Contributor

More complicated than what?

@caitp
Copy link
Contributor Author

caitp commented Oct 18, 2014

Depending on code in a different repository, depending on code generation, etc --- it makes it all a lot harder to deal with imo

@petebacondarwin
Copy link
Contributor

The thing that had to change in dgeni is done. See angular/dgeni-packages@2bfb666

The problem was actually when generating protractor tests we had not accounted for the fact that we might want to specify the base url in which they live. It defaulted to the root, which was then accommodated in the protractor config.

Now we can configure this inside the angular.js project to our heart's content. PR for this to follow.

petebacondarwin added a commit to petebacondarwin/angular.js that referenced this pull request Oct 19, 2014
Updates to dgeni-packages 0.10.5 which supports this configurability.
Change the dgeni config and protractor config so that we can have protractor
tests that are hosted outside the build/docs folder.

Provides support for angular#9557 (comment)
@petebacondarwin
Copy link
Contributor

See #9680

petebacondarwin added a commit that referenced this pull request Oct 20, 2014
Updates to dgeni-packages 0.10.5 which supports this configurability.
Change the dgeni config and protractor config so that we can have protractor
tests that are hosted outside the build/docs folder.

Provides support for #9557 (comment)
@caitp caitp force-pushed the issue-9527 branch 2 times, most recently from af086ee to 3fbde1c Compare October 20, 2014 15:05
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants