MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Test suite for MagicMirror²

    Scheduled Pinned Locked Moved Upcoming Features
    42 Posts 5 Posters 47.3k Views 6 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • R Offline
      roramirez Core Contributors
      last edited by

      Update and news:

      Thanks to @qistoph we have 2 improvement

      • Now every commit introduced previous is checked by tests suite in Travis.
      • Added a new test case https://github.com/MichMich/MagicMirror/pull/648/files

      Also, @qistoph and I suggest have two side for test.

      • The backend application and node_helpers
      • The frontend application running in electron, running client side javascript.

      For this last is possible use Spectron … but… is needed will set nodeIntegration to true. One idea is check a enviroment variable and if present set this variable to true.

      For other way, work with serveronly and get test from client side from there.

      If some have comments and ideas from this is welcome.

      PS: I have a sample of use spectron https://github.com/roramirez/MagicMirror/commit/c99581c15b4cb008b2800f40ecbaf9c9862c7ceb

      Easy module development with MagicMirror Module Template

      Q 1 Reply Last reply Reply Quote 1
      • Q Offline
        qistoph @roramirez
        last edited by

        Okay, just another brainfart.

        For the tests to run consistently and in such a way that we can test whatever is needed, we’re probably going to need a separate configuration file, maybe even a couple. If I’ve read the code correctly, we could set nodeIntegration in this config, without touching the code in MM to check for environment settings…

        This would be cleaner imho

        R 1 Reply Last reply Reply Quote 0
        • R Offline
          roramirez Core Contributors @qistoph
          last edited by

          @qistoph Sound good and I like it. Now we can set by electronOptions in configuration file, same logic as you say.

          The point to resolved is how can tell to MagicMirror read a specific file of configuration. Now is set in hardcoded. With than can be create multiples instances of configuration files into tests suite (tests directory) and run test to these. Added this task in Trello.

          Easy module development with MagicMirror Module Template

          1 Reply Last reply Reply Quote 0
          • R Offline
            roramirez Core Contributors
            last edited by

            Hi,

            Today I’ve working a problem of issue with Electron and other things, all details here
            https://github.com/MichMich/MagicMirror/issues/577

            After testing in two enviroment different for Lite and with Pixel on Raspbian, the process is long because you need the create SD and follow the instruction and check what could be the problem.

            I think this can be automatic and running on a hosted system or my own machine. Someone know howto use a arm image for RaspberryPi and run like a Docker’s container? for run a test of enviroments. I think can be a help to include in the Test Suite.

            Easy module development with MagicMirror Module Template

            morozgrafixM 1 Reply Last reply Reply Quote 0
            • morozgrafixM Offline
              morozgrafix Moderator @roramirez
              last edited by

              @roramirez I haven’t played with Docker in a while and never tried raspbian on a docker container. Quickly glanced at DockerHub and it seems that people are able to do that. https://hub.docker.com/search/?isAutomated=1&isOfficial=0&page=1&pullCount=0&q=raspbian&starCount=0
              I may take a look into it, but it all depends on my availability.

              1 Reply Last reply Reply Quote 0
              • R Offline
                roramirez Core Contributors
                last edited by

                Hi, I recently pushed a Pull Request with two e2e testing.
                https://github.com/MichMich/MagicMirror/pull/669

                These use their own configurations like @qistoph mention and after added the MM_CONFIG_FILE variable for MagicMirror.

                It’s really easy create new test for check a different part of MagicMirror and their modules.

                Easy module development with MagicMirror Module Template

                strawberry 3.141S 1 Reply Last reply Reply Quote 1
                • strawberry 3.141S Offline
                  strawberry 3.141 Project Sponsor Module Developer @roramirez
                  last edited by

                  @roramirez what is the reason for a 10 sec timeout in each test? If there are a many tests this will sum up

                  Please create a github issue if you need help, so I can keep track

                  R 1 Reply Last reply Reply Quote 0
                  • R Offline
                    roramirez Core Contributors @strawberry 3.141
                    last edited by

                    @strawberry-3.141 said in Test suite for MagicMirror²:

                    what is the reason for a 10 sec timeout in each test? If there are a many tests this will sum up

                    It’s does not accumulate. It’s a timeout, the maximun time for the test. You can set different timeout for every test.

                    Easy module development with MagicMirror Module Template

                    1 Reply Last reply Reply Quote 1
                    • morozgrafixM Offline
                      morozgrafix Moderator
                      last edited by

                      I haven’t looked thoroughly at the code and I wanted to suggest setting a default timeout that can be overwritten in individual tests as needed. It may make test code a little bit cleaner and less repetitive.

                      Good job getting it going!

                      R 1 Reply Last reply Reply Quote 0
                      • R Offline
                        roramirez Core Contributors @morozgrafix
                        last edited by

                        @morozgrafix Yes, I knowed is not more cleaner and repetitive but was the first proof of concept ;)

                        Good idea set default timeout. I added two new task in Trello board about you mentioned.

                        Easy module development with MagicMirror Module Template

                        morozgrafixM 1 Reply Last reply Reply Quote 1
                        • morozgrafixM Offline
                          morozgrafix Moderator @roramirez
                          last edited by morozgrafix

                          @roramirez I’ve played a little with test suite and added basic test for clock module. Then I realized that if we want to test different config options for a given module we may need to have to create multiple configs, which may be challenging with current tests directory organization.
                          Also I believe that process.env.MM_CONFIG_FILE = "tests/confs/config_name.js" line needs to be moved into before step (seems to work there or it can go into beforeEach if needed). Otherwise when running npm run test:e2e first config that gets picked up seems to persist throughout all of the tests and always used by the app.js.

                          I was wondering if structure similar to this makes sense:

                          tests
                          ├── configs
                          │   ├── env.js
                          │   └── modules
                          │   │   └── clock
                          │   │   │   └── clock_12hr.js
                          │   │   │   └── clock_24hr.js
                          │   │   │   └── clock_analog.js
                          │   │   └── helloworld
                          │   │       └── helloworld.js
                          ├── e2e
                          │   ├── env_spec.js
                          │   └── modules
                          │       ├── clock_spec.js
                          │       └── helloworld_spec.js
                          ├── functions
                          │   └── compare-version_spec.js
                          └── global_vars
                              └── root_path.js
                          

                          but this would involve changing app.use("/tests/confs", express.static(path.resolve(global.root_path + "/tests/confs"))); in the server.js to be somewhat dynamic and I’m not very familiar with express on how it can be done. I think that’s easily solved by just changing it to app.use("/tests/configs", express.static(path.resolve(global.root_path + "/tests/configs")));

                          R 1 Reply Last reply Reply Quote 0
                          • R Offline
                            roramirez Core Contributors @morozgrafix
                            last edited by

                            @morozgrafix Seem good sense going to a refactor of the structure.

                            I think we can take two way acord you mentioned.

                            1.- Include your test for clock module with new format for name and respective directories
                            2.- Do it the refactor to all tests that remain.

                            I really like see how you resolve the multiples instances configuration in a one tests file.

                            Easy module development with MagicMirror Module Template

                            morozgrafixM 1 Reply Last reply Reply Quote 0
                            • morozgrafixM Offline
                              morozgrafix Moderator @roramirez
                              last edited by

                              @roramirez cool thanks. I have it all ready on my fork. Will submit PR for review.

                              1 Reply Last reply Reply Quote 0
                              • Q Offline
                                qistoph
                                last edited by

                                Two commits I’ve worked on for the testing.

                                1. Check keys in the translation files. Produces errors currently, so I’ve added .skip.
                                  https://github.com/qistoph/MagicMirror/commit/123392c54934e49a397d586c1fb8dbcc4cc5d12b

                                2. To prevent loading app.js from corrupting the Mocha test environment, I suggest to execute the app.js in a virtual environment. This can also serve as an example for future test cases where code needs to be executed in the global namespace.
                                  https://github.com/qistoph/MagicMirror/commit/cd8bee1371ffc6cce7b7bf44f85cd03705e4c1bd

                                Any thoughts before I submit a PR?

                                strawberry 3.141S R 2 Replies Last reply Reply Quote 1
                                • strawberry 3.141S Offline
                                  strawberry 3.141 Project Sponsor Module Developer @qistoph
                                  last edited by

                                  @qistoph i like the idea of the sandbox

                                  is there a way to just warn instead of error for missing translation keys?

                                  Please create a github issue if you need help, so I can keep track

                                  Q 1 Reply Last reply Reply Quote 0
                                  • Q Offline
                                    qistoph @strawberry 3.141
                                    last edited by

                                    @strawberry-3.141
                                    How about this?
                                    https://github.com/qistoph/MagicMirror/commit/406ae4e8c37cbf7e31c89f5341d7715bacbcf0d2

                                    			try {
                                    				expect(fileKeys).to.deep.equal(baseKeys);
                                    			} catch(e) {
                                    				if (e instanceof chai.AssertionError) {
                                    					this.skip();
                                    				} else {
                                    					throw e;
                                    				}
                                    			}
                                    
                                    1 Reply Last reply Reply Quote 0
                                    • R Offline
                                      roramirez Core Contributors @qistoph
                                      last edited by

                                      @qistoph Nice work. Related with your first point there a discussion about translations of JSON file.
                                      https://github.com/MichMich/MagicMirror/pull/679

                                      Easy module development with MagicMirror Module Template

                                      1 Reply Last reply Reply Quote 0
                                      • R Offline
                                        roramirez Core Contributors
                                        last edited by

                                        Hi Guys,

                                        Today I’ve playing with test suite I something going me crazy

                                        I create the follow test
                                        https://github.com/roramirez/MagicMirror/commit/88f1f6bbd4fe6d7f3b9391993d207c7b9ebfb2e9

                                        Two check on same test case. On my enviroment ever but ever give me fail

                                        smirror :: ~/MagicMirror ‹without-modules-test*› » ./node_modules/mocha/bin/mocha tests/e2e/without_modules.js
                                        
                                        
                                          Check configuration without modules
                                            ✓ Show the message create file config (83ms)
                                            1) Show the message create file config 2
                                        
                                        
                                          1 passing (6s)
                                          1 failing
                                        
                                          1) Check configuration without modules Show the message create file config 2:
                                             Error: An element could not be located on the page using the given search parameters ("#module_2_helloworld .module-content").
                                              at elements("#module_2_helloworld .module-content") - getText.js:18:17
                                              at execute(, "isLoading", , "require") - api.js:350:19
                                        

                                        I pushed a sample for shared with you and these are passing on Travis
                                        https://travis-ci.org/roramirez/MagicMirror/jobs/200521954

                                        Anybody can give me some light?

                                        Easy module development with MagicMirror Module Template

                                        1 Reply Last reply Reply Quote 0
                                        • Q Offline
                                          qistoph
                                          last edited by

                                          Weird… don’t see anything wrong with your code and it also runs fine on my machine…

                                          Probably not really helpful, though, sorry

                                          R 1 Reply Last reply Reply Quote 0
                                          • R Offline
                                            roramirez Core Contributors @qistoph
                                            last edited by

                                            @qistoph I’ll test in other instance.

                                            What S.O are you using?

                                            Easy module development with MagicMirror Module Template

                                            Q 1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 1 / 3
                                            • First post
                                              Last post
                                            Enjoying MagicMirror? Please consider a donation!
                                            MagicMirror created by Michael Teeuw.
                                            Forum managed by Sam, technical setup by Karsten.
                                            This forum is using NodeBB as its core | Contributors
                                            Contact | Privacy Policy