HTBox / allReady

This repo contains the code for allReady, an open-source solution focused on increasing awareness, efficiency and impact of preparedness campaigns as they are delivered by humanitarian and disaster response organizations in local communities.
http://www.htbox.org/projects/allready
MIT License
891 stars 624 forks source link

AllReady.ScenarioTest Issues #2345

Open oneolddev opened 5 years ago

oneolddev commented 5 years ago

.net framework 4.6.1 is the last default version of the framework installed with Visual Studio Community 2017 15.9.7. AllReady.ScenarioTest is looking for 4.6.2.

image

Unless there is a very specific reason for using 4.6.2, I would suggest returning to 4.6.1.

oneolddev commented 5 years ago

@dchristensen - thoughts? I see that you were the last one to touch AllReady.ScenarioTest.fsproj.

oneolddev commented 5 years ago

Found another issue related to AllReady.ScenarioTest project. It is missing a dependency on the allReady project.

Fixed - PR to come.

dchristensen commented 5 years ago

@c0g1t8 I don't know that its worthwhile to spend a lot of time working on the AllReady.ScenarioTest project. They are not well maintained and there isn't really anyone who is actively working on the project who is familiar with F# or canopy. I know @stevejgordon was working to replace them with tests written in C# at one point, but I don't know how far the effort got.

jonparker commented 5 years ago

I'm not sure if having no tests is a better option than converting them to c# or learning how f# work. Just something to weigh up.

On Sun., 17 Feb. 2019, 2:17 pm Derek Christensen, notifications@github.com wrote:

@c0g1t8 https://github.com/c0g1t8 I don't know that its worthwhile to spend a lot of time working on the AllReady.ScenarioTest project. They are not well maintained and there isn't really anyone who is actively working on the project who is familiar with F# or canopy. I know @stevejgordon https://github.com/stevejgordon was working to replace them with tests written in C# at one point, but I don't know how far the effort got.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/HTBox/allReady/issues/2345#issuecomment-464411999, or mute the thread https://github.com/notifications/unsubscribe-auth/AAJSQ6gKro1UjWBWMpCQ-QcSehUedh-Xks5vOMm9gaJpZM4a_MYk .

oneolddev commented 5 years ago

@dchristensen I agree with you. My primary goal right now is simply to get the web part of the solution building and passing unit tests. I messaged @stevejgordon on Slack a little over a week ago. He indicated that he and @MisterJames were working on some new plans.

oneolddev commented 5 years ago

I've changed the description of this issue so it encompasses all the issues I've discovered. I was initially just having issues getting AllReady.ScenarioTest to build consistently.

  1. AllReady.ScenarioTest built before AllReady was built
    • added a dependency in AllReadyWebOnly.sln
  2. Was unable to build since 4.6.2 is not installed by default by VS2017 Community
    • changed to use 4.6.1 which is the latest installed by default with VS2017 Community
  3. AppVeyor build was using ChromeDriver 2.45 but local build was using ChromeDriver 2.33
    • updated to ChromeDriver 2.45 for local testing
    • necessary to be work with current version of Chrome Version 72.0.3626.119 (Official Build) (64-bit)

Even with these changes the test results are inconsistent. That is, tests that may have passed before may or may not pass when the test is run again. Two tests do fail consistently.

Test: Admin can create task Couldn't find any elements with selector 'Create Task', did you mean: Campaigns .alert .alert-success .caret .alert-danger Error: can't find element Create Task Url: http://localhost:48408/Admin/Event/Details/8011 Exception details: canopy.types+CanopyElementNotFoundException: can't find element Create Task at canopy.wait.waitResults[a](Double timeout, FSharpFunc2 f) in C:\projects\canopy\src\canopy\wait.fs:line 30 at canopy.core.click[a](a item) in C:\projects\canopy\src\canopy\canopy.fs:line 670 at Pages.AdminEventDetails.CreateNewTask[a](a _arg1) in C:\repos\allReady\AllReadyApp\AllReady.IntegrationTest\Pages.fs:line 216 at CreatingOrgsAndCampaigns.All@79-6.Invoke(Unit _arg7) in C:\repos\allReady\AllReadyApp\AllReady.IntegrationTest\CreatingOrgsAndCampaigns.fs:line 81 at canopy.runner.tryTest[a,b](a test, b suite, FSharpFunc2 func) in C:\projects\canopy\src\canopy\runner.fs:line 134

Test: The Org Admin can create task Couldn't find any elements with selector 'Create Task', did you mean: Campaigns .alert .alert-success .caret .alert-danger Error: can't find element Create Task Url: http://localhost:48408/Admin/Event/Details/8012 Exception details: canopy.types+CanopyElementNotFoundException: can't find element Create Task at canopy.wait.waitResults[a](Double timeout, FSharpFunc2 f) in C:\projects\canopy\src\canopy\wait.fs:line 30 at canopy.core.click[a](a item) in C:\projects\canopy\src\canopy\canopy.fs:line 670 at Pages.AdminEventDetails.CreateNewTask[a](a _arg1) in C:\repos\allReady\AllReadyApp\AllReady.IntegrationTest\Pages.fs:line 216 at CreatingActivitiesForCampaigns.All@61-12.Invoke(Unit _arg5) in C:\repos\allReady\AllReadyApp\AllReady.IntegrationTest\CreatingActivitiesForCampaigns.fs:line 63 at canopy.runner.tryTest[a,b](a test, b suite, FSharpFunc2 func) in C:\projects\canopy\src\canopy\runner.fs:line 134

Resolving this locally is next on my list. Again the goal is to simply to get an acceptable build in AppVeyor.

oneolddev commented 5 years ago

Attempted to isolate a fix for this issue alone - PR #2350.

Build test showed image

The initial error is a timeout. This did not occur when the test was run locally. Did get the two test case failures as noted above locally.

Could it be that the build server needs more time to warm up?

oneolddev commented 5 years ago

Temporarily disabled the two broken tests and committed -https://github.com/HTBox/allReady/pull/2350/commits/3bec7257809fd0d88d85e5aba68e0551bb2d6588. The results still show a timeout at line 646.

Now looking into extending the timeouts in Canopy.

oneolddev commented 5 years ago

After multiple trial an error, I was able to reproduce the problem found in AppVeyor. The cause appears to be because a critical NPM package was not being restored in the AppVeyor build - jquery.

On AppVeyor it's always a clean build straight from the repository and is done through the command line. It appears that the cause of the problem is due some javacript libraries are not being restored. This causes the browser tests fits. The normal build and test cycles in VS2017 seems to have gotten them restored.

There appears to be some linkage with #2346.

oneolddev commented 5 years ago

After multiple trial an error, I was able to reproduce the problem found in AppVeyor. The cause appears to be because a critical NPM package was not being restored in the AppVeyor build - jquery. On AppVeyor it's always a clean build straight from the repository and is done through the command line. It appears that the cause of the problem is due some javacript libraries are not being restored. This causes the browser tests fits. The normal build and test cycles in VS2017 seems to have gotten them restored. There appears to be some linkage with #2346.

I thought I would provide an update on this issue.

oneolddev commented 5 years ago

Finally figured it out. image Will create a PR with the fix.

oneolddev commented 5 years ago

I've abandoned a possible fix in PR #2350 and closed. I did learn a few things and included the fix as part of PR #2352.

The tests are now passing.

After spending many hours on this issue, I think moving the testing to a testing framework with C#/Selenium would be a better long term goal.

oneolddev commented 5 years ago

I've done some further testing. The underlying issue with this implementation appears to be timing. An action on a browser page may not be complete before the next action on the browser page is executed.

In PR #2352, I had removed knockout-bootstrap to address a warning caused by some jQuery version conflict. It was suppose to be a temporary fix. image When I added knockout-bootstrap back, I had sporadic failures locally and more consistent failure on the AppVeyor build server.

I was not able to reproduce the problem interactively. Thus my suspicions.