Coder Social home page Coder Social logo

AllReady.ScenarioTest Issues about allready HOT 13 OPEN

c0g1t8 avatar c0g1t8 commented on June 27, 2024
AllReady.ScenarioTest Issues

from allready.

Comments (13)

c0g1t8 avatar c0g1t8 commented on June 27, 2024

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

from allready.

c0g1t8 avatar c0g1t8 commented on June 27, 2024

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

Fixed - PR to come.

from allready.

dchristensen avatar dchristensen commented on June 27, 2024

@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.

from allready.

jonparker avatar jonparker commented on June 27, 2024

from allready.

c0g1t8 avatar c0g1t8 commented on June 27, 2024

@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.

from allready.

c0g1t8 avatar c0g1t8 commented on June 27, 2024

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
  1. 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
  1. 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 [email protected](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 [email protected](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.

from allready.

c0g1t8 avatar c0g1t8 commented on June 27, 2024

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?

from allready.

c0g1t8 avatar c0g1t8 commented on June 27, 2024

Temporarily disabled the two broken tests and committed -3bec725. The results still show a timeout at line 646.

Now looking into extending the timeouts in Canopy.

from allready.

c0g1t8 avatar c0g1t8 commented on June 27, 2024

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.

from allready.

c0g1t8 avatar c0g1t8 commented on June 27, 2024

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.

  • I can confirm that one of the primary reasons for ScenarioTest not passing is that the client side packages are not being restored fully on the AppVeyor build server. I believe this is all related to using Node 10 by default. Moving forward this will be addressed #2346 - see notes there.
  • On the two repeatable failure cases, the root cause is due to the event upon which the task test is being executed has both the event start and end date being populated with the current date as of the execution of the test. The event to be created was to start 1 day after creation and end 5 days after creation.
    image
    Canopy is not interacting with the datetimepicker control as expected.

from allready.

c0g1t8 avatar c0g1t8 commented on June 27, 2024

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

from allready.

c0g1t8 avatar c0g1t8 commented on June 27, 2024

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.

  • Upgraded the Scenario.Test project to Canopy 2 and Core 2.1.
  • Fixed a fewer minor bugs in the tests themselves

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.

from allready.

c0g1t8 avatar c0g1t8 commented on June 27, 2024

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.

from allready.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.