-
Notifications
You must be signed in to change notification settings - Fork 0
/
b2g-qa-daily-standup
5400 lines (3975 loc) · 176 KB
/
b2g-qa-daily-standup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
==========
2016-03-18
==========
Michael
Yesterday
* Continued reading through the Rust guide
Today
* Start programming in rust
* Nothing huge, just some tinkering to start with
* Have to run some errands this afternoon but will be available by email if needed
Blocked?
Nope
No-Jun
* What did I do?
** Created a pr that tests pagekite connection, and external ping endpoints
** Looked into https issue. Looks like the code has issues with the latest version of openssl, hopefully get this resolved during the workweek
** Automation meeting
* What will I do?
** Review mhenretty's PR
** Incorporate comments from jlorenzo regarding the integration test PR
nhirata:
3/18:
* blocker :
** chirimen : bug 1166608 - asked fabrice
** webvr :
*** setup oculus account + id : https://id.oculus.com, verify with the link sent in your email, and log in at least once at http://forums.oculus.com/
*** Prototype: Link + ConnectedMe
**** working more on FitBit API; waiting for the bulb
** Q1 goals
3/17:
* blocker :
** chirimen : bug 1166608 - asked fabrice
*** Prototype: Link + ConnectedMe
**** working more on FitBit API; got the FitBit working with OAuth2 with a python wrapper so I don't need to worry about verification code. Took a little bit of time to figure out how to work past that until I did more digging around to seeing what's available (FitBit doesn't allow for Mechanize or other bots to access their APIs); waiting for the bulb
Isabel
-Today
Link Smoketest
Work on automating some scenarios for foxApp locally
Attended FoxLink automation meeting
Started to investigate how to simulate the services(lights bulbs) in FoxApp
(Had to go to the doctor, will be extra time after this stand up)
-Monday
Link Smoketest
Investigate how to simulate the services(lights bulbs) in FoxApp
Atthend ww foxlink meetings via vydeo
Kate
- Yesterday
* Worked on understanding OpenHab CI + builds
* Chatting with Chris Lord today about what he learned from Kai
* Encrypted token for BinTray API and learned about encryption
* Fixed final outstanding things in the PR
- Today
* Going to look at OpenHab bintray to see what they are doing differently (whether there is some script they are running)
* Otherwise I think PR is in a good place
* Do some work towards deliverable and write UI test for OpenHab using steps from Manel's manual One and Done tasl
Martijn
Working on converting tests from setBoolPref to pushPrefEnv
Working on converting tests from addPermission to pushPermissions
Johan (On PTO starting Monday, be back on Tuesday 29th)
* What did I do today?
** Foxbox
*** Continue on setting up the unit test framework on Foxapp. Thanks to gmarty's feedback I avoided the mock browser problem by changing the test runner to Karma. It's a test runner that execute test within browsers. I'm getting some issues in regards to pipelining ES-2015 and the test runner
*** Tired to export code coverage in another repo than fxbox/foxbox https://github.com/fxbox/thinkerbell/pull/42. I got some issues with the workaround I used in my script. This workaround won't be necessary anymore in the next rust nightly. Then I'll wait until I'm back to continue on it.
*** Reviewed https://github.com/fxbox/app/pull/22. Reviewing https://github.com/fxbox/foxbox/pull/235/ . Still have https://github.com/fxbox/foxbox/pull/220 left before leaving
*** Helped in regards to tests failures/questions I've been asked on IRC.
*** Meeting with Isabel and No-Jun
** Vaani: Looked at config failures on the build for openhab-distro. It seems descriptor.json is not valid from a JSON point of view. I left details at https://github.com/mozilla/openhab-distro/pull/1
* No blockers so far
* What will I do when I'm back?
** Catch up.
** Couldn't do it today, document assertion methods
** Continue on unit tests on FoxApp
** Turn on code coverage on another repo than foxbox
* What do I have in my queue?
** Continue to use rust as a lib
No-Jun
* What did I do?
** Briefings on what happened
** Going over comments on my PR from johan
* What will I do?
** Incorporate comments to PR
** Prioritize testing tasks for link project
==========
2016-03-17
==========
Michael
Yesterday
* Weekly Metrics meeting
* Decided to use sprints to assist with workflow
* Sprints last 2 weeks, daily status meetings at 9am PST
* Rust 'n stuff
Today
* Rust training
Blocked?
Nope
Johan
* What did I do today?
** Foxbox
*** Finalized clean up on e2e tests https://github.com/fxbox/app/pull/14 . Cleaning the indexedDb turn out to be more difficult that I initially thought. Guillaume helped me out
*** Reviewed https://github.com/fxbox/app/pull/17
*** Started to set up unit tests on the web app. I struggled a bit on the pipeline to convert next gen JavaScript into node-compatible ones. I'm now trying to mock out the browser.
* No blockers so far
* What will I do tomorrow?
** Couldn't do it today, document assertion methods
** Continue on unit tests on FoxApp
* What do I have in my queue?
** Continue to use rust as a lib
Isabel
-Today
Run the smoketest
Create a PR for a basic test for FoxApp. Fixed the reviewer's comments
Tried to access Foxbox and FoxApp from a different network
CD meetup with the Madrid community
-Tomorrow
Run FoxLink smoketest
Work on FoxApp automation
FoxLink automation meeting
No-Jun
* What did I do?
** Tried out https implementation, but the foxbox segfaults, emailed dev
** Investigated how to use certs in mocha tests
** created a new test that connects to ip tunnel via http
** Helped out nhirata about connecting to the foxbox
* What will I do?
** Await response regarding my https issue
** Continue working on ip tunnel script
Martijn
Trying to get a docker build again
Filled in my Workday goals
Working on converting tests from setBoolPref to pushPrefEnv
Pallavi:
Meeting is deleted; not able to recover; will create a new one.
Will change etherpad name to cd-qa-standup
Intern: location will be SF; London invite will be handled by recruiting
Contributors for London - 15 from CD
Q1 goals - start filing out
Kate
Yesterday
* Vaani Meeting
* Paulo last day, Marcia "official" last day in MV
* Spoke with Kelly, was blocked by email from Kai
* https://openhab.ci.cloudbees.com/ this is how OpenHab does CI
-- Did the doc and tips from Chris work?
nhirata
3/17:
* blocker :
** chirimen : bug 1166608 - asked fabrice
** webvr :
*** setup oculus account + id : https://id.oculus.com, verify with the link sent in your email, and log in at least once at http://forums.oculus.com/
*** Prototype: Link + ConnectedMe
**** working more on FitBit API; waiting for the bulb
**** sync up with Amy
3/16:
* blocker :
** chirimen : bug 1166608 - asked fabrice
* dr. appt
** CD
*** Prototype: Link + ConnectedMe
**** looking at connecting Philips Hue to FoxBox and sending requests:
***** Worked with NoJun : https://wiki.mozilla.org/Connected_Devices/QA/Tips_and_Tricks#REST_API
**** https://docs.google.com/presentation/d/1eiuVTzAwMmr0HpxaDHQVAh1C0RFf6HD4icNVRqxvWqg/edit#slide=id.p
==========
2016-03-16
==========
Johan
* What did I do today?
** Foxbox
*** Found the reason of the failure on travis (old version of Firefox used). got reviewed. Landed https://github.com/fxbox/app/pull/11
*** Continued on nicer assertions in unit tests https://github.com/JohanLorenzo/rust-assert-sugar I now need to document it out.
*** Looked into how to write unit tests for React
*** Attendded Thinkerbell meeting
** Vaani: Investigated reason of build failure. Details sent in a follow up email.
* What will I do tomorrow?
** Document assertion methods
** Play with unit tests in React
** Clean up the e2e/integration test (forgot to do it in the previous PR)
* What do I have in my queue?
** Continue to use rust as a lib
Michael
Yesterday
* Weekly B2G meeting
* Continued working with Russ on understanding the Rust telemetry library
* We also wrote a few unit tests for kicks
* Continued reading/working through the Rust book
Today
* Weekly Metrics meeting
* Rust'ing
Blocked?
Nope
No-Jun
* What did I do?
** Talked to ferjm, found out how to access foxbox remotely via tunnel
** define a couple use case scenarios
** Attended Thinkerbell and Taxonomy meeting
** helped dev with compiling on mac platform
* What will I do?
** Try out the UI app to see its progress
** Work on developing a new test case for remote access
Martijn
Updating patch for bug 1138426 - convert accessibility setIntPref to pushPrefEnv
Bug 1057499 - Run mochitests with pref browser.sessionhistory.max_total_viewers=0 and see if there are tests that need fixing
Looking into converting tests from setBoolPref to pushPrefEnv
Isabel
Today
-Update FoxApp and started to create simple tests
-Got the philips hue lights bulb and set them up. Finally I can see them in FoxApp
-Foxlink Taxonomy meeting
-Started to run the smoketest
Tomorrow
-Smoketest
-Start creating tests for FoxApp
-CD meetup in Madrid
nhirata:
3/16:
* blocker :
** chirimen : bug 1166608 - asked fabrice
* dr. appt
** webvr :
*** setup oculus account + id : https://id.oculus.com, verify with the link sent in your email, and log in at least once at http://forums.oculus.com/
** CD
*** Prototype: Link + ConnectedMe
**** looking at connecting Philips Hue to FoxBox and sending requests:
***** Worked with NoJun : https://wiki.mozilla.org/Connected_Devices/QA/Tips_and_Tricks#REST_API
3/15:
* update : bug 1248791 was pushed.
* blocker :
** chirimen : bug 1166608 - asked fabrice
* meetings: CD meeting
** CD
*** Prototype: Link + ConnectedMe
***** Looking at FitBit API/OAuth
==========
2016-03-15
==========
Johan
* What did I do today?
** Foxbox
*** Reviewed https://github.com/fxbox/foxbox/pull/205/
*** Login: Clarified bug with gmarty and Isabel
*** Update first e2e/integration test. Had some trouble to make it run on Travis https://github.com/fxbox/app/pull/11
* What will I do ?
** Couldn't get some help from the dev today https://github.com/fxbox/thinkerbell/pull/38
** Continue on nicer assertions in unit tests
* What do I have in my queue?
** Continue to use rust as a lib
Michael
Yesterday
* Reading through the Rust book
* Started going through the Rust telemetry library with Russ to better understand the code
Today
* Weekly B2G meeting
* Continue working with Russ on understanding the Rust telemetry library
* Continue reading/working through the Rust book
Blocked?
Nope
Isabel
Today
-Checked FoxApp and the error shown, now it fixed
-Defined an smoketest to check the USs that are going to be demod
-Will receive the lights by the end of the day(got delayed)
-CD weekly status meeting
Tomorrow
-Set up the new lights and test the app
No-Jun
* What did I do?
** integration test is in travis now, spent a lot of time trying to locate the file that causes failure
* What will I do?
** Look into the pagekite (remote access from outside) solution for Foxbox and design an automated test for it
nhirata:
3/15:
* update : bug 1248791 was pushed.
* blocker :
** chirimen : bug 1166608 - asked fabrice
* meetings: CD meeting
** webvr :
*** setup oculus account + id : https://id.oculus.com, verify with the link sent in your email, and log in at least once at http://forums.oculus.com/
** CD
*** Prototype: Link + ConnectedMe
**** need to look at API and seeing what we can poll better
*** Prototype : Changed prototype, going to figure out fitbit API and what it contains.
***** redesign of database
3/14: sick
3/11:
* blockers
** bug 1248791 : build pushed; patch reviewed - checkin needed; wes pinged.
** chirimen : bug 1166608 - asked fabrice
* [on pause] webvr : automation/research ( need to check out how to output log from oculus )
* meetings: standup, syncmetrics, 1 on 1
* tasks :
** webvr :
*** setup oculus account + id : https://id.oculus.com, verify with the link sent in your email, and log in at least once at http://forums.oculus.com/
** CD
*** Prototype: Link + ConnectedMe
**** setup hue on wifi going out :
***** getting Hue Hub connected, color light came in, worked on setting up a wifi network dedicated to connected me setup.
**** connected wemo : wemo app, connects to wifi network. No security
*** Prototype : Changed prototype, going to figure out fitbit API and what it contains.
***** redesign of database
==========
2016-03-14
==========
Johan
* What did I do today?
** Foxbox
*** Reviewed https://github.com/fxbox/foxbox/pull/194 https://github.com/fxbox/foxbox/pull/176
*** Unbitrot https://github.com/fxbox/foxbox/pull/99 . I'm still getting some errors on travis. Investigating.
*** Tried to continue on the App integration test, but I got some errors. Debugging that with gmarty
*** Looked into how to improve #[should_panic] in rustc for error message. It's actually simpler than I thought and doesn't require a change in the compiler. I'm making macros in a separate repo.
** Jenkins: Changed credentials by new ones
* What will I do ?
** Couldn't get some help from the dev today. Will try on Monday https://github.com/fxbox/thinkerbell/pull/38
** Get login mechanism repaired
** Continue on nicer assertions in unit tests
* What do I have in my queue?
** Continue to use rust as a lib
Michael
Friday
* Working through the Rust tutorials
Today:
* Continue on with the rust tutorial/guide
* Meet with Russ to talk about Rust and work through some code
* New hire onboarding panel this afternoon
Blocked?
Nope
Isabel
Today
-Fixed PR with Johan's comments and merged it
-Worked on the test cases definition, adding steps and expected
-Attended FoxLink weekly meeting
-Will attend Monday Project meeting
Tomorrow
-Will receive the philips new lights, will start testing the app manually
-Check if I can start helping on automating any part of the app
No-Jun (read only - in the Link meeting)
* What have I done?
** Link integration test is now in repo
* What will I do?
** Working with jlorenzo to add test integration to travis, should be done today
** Review changes made to foxbox so far, and identify new test cases
** Create new test case regarding setup and login which tests do you want to add here? (just to check if the ones I created are the ones you mean ;))
Martijn
Updating patch for Bug 1251905 - Convert test_continuous_wheel_events.html to use pushPrefEnv
Updating patch for bug 1249061 - Improve property/attribute handling for marquees
Updating patch for bug 1138426 - convert accessibility setIntPref to pushPrefEnv
nhirata: sick; out on PTO
==========
2016-03-11
==========
Michael
Yesterday
* Returned the 5 Micro SIM cards from the Aries devices to IT
* Finished watching the engineering onbaording sessions for Metrics/Telemetry
* Starting reading the Gecko documentation on metrics/telemetry
Today
* Moar reading!
* Hopefully play around with rust a bit
Blocked?
Nope
Johan
* What did I do today?
** Foxbox
*** Implemented a simple server that simulates FoxBox for the UI (thanks to No-Jun's code) https://github.com/fxbox/app/pull/11 . It won't immediately land as login is currently being change and that's a pre-requisite for every front-end test.
*** Unbitrot https://github.com/fxbox/foxbox/pull/99 . I'm still getting some errors on travis. Investigating.
*** Reviewed test plan https://docs.google.com/document/d/1-3-CpYiiLYtZKKenjh5O_SdDxFB0ZMJBrXgTosX6mWE/edit#
*** Meeting with Isabel and No-Jun
* What will I do on Monday?
** Continue the investigation on https://github.com/fxbox/foxbox/pull/99
** Couldn't get some help from the dev today. Will try on Monday https://github.com/fxbox/thinkerbell/pull/38
* What do I have in my queue?
** Continue to use rust as a lib
** Try to improve #[should_panic] in rustc
Isabel
*Today
Applied for invitation to women at Mozilla to attend Google I/O 2016.
Project Link
-Looked at the integration framwork code to understand it
-Worked on test plan and test cases
-Automation meeting
-Created a small PR for changing a few functions for the selenium setup test
-Ordered the currently supported philips light bulbs
*Moday
Project Link
Now that the test cases are defined, will work on adding details to each of them
Will update the test cases doc with the docs created in the spreadsheet
Project Link weekly meeting
Kate
This Week
* TRIBE
Today
* Set up BinTray and TravisCI with separate email account and password
* Need to understand how to "share" Travis among people (because it is through my Repo) => Just put .travis.yml in other repos, and people will have to toggle a switch it on Travis' UI https://travis-ci.org/profile/$YOUR_GITHUB_USERNAME . However, I'd just recommend to toggle it on your account (for testing) and the mozilla one. You'll need an owner of the GH mozilla group to toggle the switch on that account.
* Find out more details about Vaani prototype and start thinking about how to test
No-Jun
* What did I do?
** Meeting to discuss automation with the Project Link
** Refactored the test case based on jlorenzo's feedback, fixed some bugs with it
* What will I do?
** Review test plan
** Incorporate new comments from jlorenzo
** Make updates to the test status in the Link user story
nhirata:
3/11:
* blockers
** bug 1248791 : build pushed; patch reviewed - checkin needed; wes pinged.
** chirimen : bug 1166608 - asked fabrice
* [on pause] webvr : automation/research ( need to check out how to output log from oculus )
* meetings: standup, syncmetrics, 1 on 1
* tasks :
** webvr :
*** setup oculus account + id : https://id.oculus.com, verify with the link sent in your email, and log in at least once at http://forums.oculus.com/
** CD
*** Prototype: Link + ConnectedMe
**** setup hue on wifi going out :
***** getting Hue Hub connected, waiting for color light to come in (possibly friday)
**** connect wemo
*** Prototype : Weather :
***** redesign of database
3/10:
* blockers
** bug 1248791 : build pushed; patch reviewed - checkin needed; wes pinged.
** chirimen : bug 1166608 - asked fabrice
** automation for webvr : blocked, need to talk to cvan : Meeting thursday at 3
* meetings: standup, webvr team
* tasks
** fxos taskcluster builds :
*** looked at https://bugzilla.mozilla.org/show_bug.cgi?id=1251293
*** talked to doliver about taskcluster builds
*** SIM number count : still a large number of sims that are unaccounted for; still investigating and asking around.
*** looked at https://bugzilla.mozilla.org/show_bug.cgi?id=1244497
** webvr :
*** meet with cvan, and several of the team to talk about webvr needs.
**** use of taskcluster, docker images and pulling various browser builds and repo hash.
**** need to double check if there's other testing tools out there other than selenium
*** more research
** CD :
** send back mentor email
** https://wiki.mozilla.org/Connected_Devices/QA/Tips_and_Tricks
*** connected me prototypes due date 3/30
**** Link + fitbit + lights + outlet + scale + smartlid :
***** added new scale, connects via bluetooth to device.
***** connecting smartlid to fitbit
**** Weather accumulation data :
***** started prototyping redesign in FileMaker before moving to LAMP
==========
2016-03-10
==========
Johan
* What did I do today?
** Reviewed intern's DS-7002
** Foxbox
*** Done first iteration. E2E test will require some manual setup for now https://github.com/fxbox/app/pull/11
*** Reviewed https://github.com/fxbox/foxbox/pull/176
*** Made a patch that should workaround the intermittent issue https://github.com/fxbox/foxbox/issues/156
*** Addressing reviews. I'm getting compilation errors I'm not used to https://github.com/fxbox/thinkerbell/pull/38 . Will continue to work on it.
* What will I do tomorrow?
** https://github.com/fxbox/thinkerbell/pull/38
** Unbitrot https://github.com/fxbox/foxbox/pull/99
* What do I have in my queue?
** Continue to use rust as a lib
** Try to improve #[should_panic] in rustc
Michael
Yesterday
* Metrics weekly meeting
* Bi-weekly qa meeting
* Read up on metrics and telemetry
* Watched engineering onboarding session
Today
* More reading/watching/learning about metrics and telemetry
* Work on learning rust
* Return the 5 Aries SIM cards to IT
Blocked?
Nope
Isabel
-Today
Finally after applying the tricks Johan discovered about selenium and FoxApp, I did some tests locally to try and now I can access its elements and interact with them.
Worked on the Projec Link test plan: https://docs.google.com/document/d/1-3-CpYiiLYtZKKenjh5O_SdDxFB0ZMJBrXgTosX6mWE/edit#
Worked on the E2E manual test cases, although without steps yet, they are taking good shape: https://docs.google.com/spreadsheets/d/19l74YZVagQJTuWZpJ1ohmtNFR8p3AOo6YUpbv9A-LtU/edit#gid=0
-Tomorrow
Will work a bit more on the test cases regarding recipes
Will start working on the improvement for the set up tests
FoxLink automation meeting
No-Jun
* What did I do?
- Submitted a PR to merge integration test environment into fxbox repo
- Read over the new design architecture (taxonomy)
- Read over the columns that were added to the foxlink user story
* What will I do?
- Incorporate feedbacks from jlorenzo
- Think about immediate improvements I can make to the integration test
- Make comments on the testing task (might need to go over this on the automation meeting)
nhirata
3/10:
* blockers
** bug 1248791 : build pushed; patch reviewed - checkin needed; wes pinged.
** chirimen : bug 1166608 - asked fabrice
** automation for webvr : blocked, need to talk to cvan : Meeting thursday at 3
* meetings: standup, webvr team
* tasks:
** setup oculus account + id : https://id.oculus.com, verify with the link sent in your email, and log in at least once at http://forums.oculus.com/
** send back mentor email
** SIM number count
** connected me prototypes due date 3/30
*** Weather accumulation data :
**** designing database ; need to redesign to be more generic
*** Link + fitbit + lights + outlet + scale + smartlid :
**** getting Hue Hub connected, waiting for color light to come in (possibly friday)
**** meeting setup with syncmetrics team : meeting friday morning
**** connect smart lid and scale to fitbit and wemo
3/9:
* meetings: QA, standup
* tasks done:
** connected me prototypes due date 3/30
*** Link + fitbit + lights + outlet + scale + smartlid :
**** working on installing foxbox on rpi2; got foxbox running; doesn't work on wheezy ...
**** meeting setup with syncmetrics team : meeting friday morning
==========
2016-03-09
==========
Johan
* What did I do today?
** FoxLink:
*** Reviewed https://github.com/fxbox/foxbox/pull/170
*** FoxApp
**** Set up Philips Hue in Paris, so I could try the app manually before
**** Started to write a first e2e test against react https://github.com/fxbox/app/pull/11 ohh you got it!!\o/ Not sure if I tested the problematic use case :S What was the bad element?I tried to tap on any of the bottom tabs like themes, settings, mr.fox. I found the elements but could not click on them. Those are the only elements I see so far so could not test with others
* Am I blocked? No.
* What will I do tomorrow?
** Continue on https://github.com/fxbox/app/pull/11
** Address review comments https://github.com/fxbox/thinkerbell/issues/35
* What do I have in my queue?
** Continue to use rust as a lib
** Try to improve #[should_panic] in rustc
Pallavi (At the dentist)
Michael
Yesterday
* Installed Rust
* Ran Hello World
* CD Meeting
Today
* Metrics meeting (9-9:45)
* Bi-weekly roundtable tonight
* Play with Rust
Blocked?
Nope
Isabel
-Today
Medical platform meeting
Foxlink
*Updated trello board
*Worked on PR https://github.com/fxbox/foxbox/pull/170 and finally merged it
*Worked on the test plan adding the development tasks and the qa tasks for each one
*Reviewed the new wireframes including recipes
**Worked on creating the test cases. The USs and scenarios to tests are getting clearer
-Tomorrow
FoxLink
*Will continue working on the test plan/test cases
*Will start working in a follow up to improve PR170
Martijn
Patch ready for Bug 1138426 - convert accessibility setIntPref to pushPrefEnv
Working on review comments in [Bug 1249061] Improve property/attribute handling for marquees
Tomorrow I'll be on PTO (travelling)
No-Jun
* What did I do?
** Tested cr's patch
** Looked into TLS/WSS scheme
** Tested cr's patch using the integration test tool, merged
* Todo:
** Move test framework into fxbox repo
** Review test status on Links project spreadsheet
3/9:
* meetings: QA, standup
* blockers
** bug 1248791 : build pushed; patch reviewed - checkin needed; wes pinged.
** chirimen : bug 1166608 - asked fabrice
** automation for webvr : blocked, need to talk to cvan : Meeting thursday at 3
* tasks:
** connected me prototypes due date 3/30
*** Weather accumulation data :
**** designing database
*** Link + fitbit + lights + outlet + scale + smartlid :
**** working on installing foxbox on rpi2.
**** meeting setup with syncmetrics team : meeting friday morning
3/8:
* meetings: systemsfe, CD meeting
* tasks:
** connected me prototypes due date 3/30
*** Weather accumulation data :
**** setup LAMP / designing database
*** Link + fitbit + lights + outlet + scale + smartlid :
*** meeting setup with syncmetrics team : meeting friday morning
==========
2016-03-08
==========
Pallavi
- Will be at the Connected Devices meeting
- Just heard from the recruiter - Justin accepted internship offer with Cloud Services team.
Johan (will attend CD meeting)
* What did I do today?
** FoxLink:
*** Investigated reason of the failure https://github.com/fxbox/foxbox/issues/156
*** Done first iteration https://github.com/fxbox/thinkerbell/issues/35
*** Small refactor of some unit tests done by devs https://github.com/fxbox/foxbox/pull/161
*** Made a patch to unblock integration tests. It turns out to be a dupe of something in development. More discussions in there https://github.com/fxbox/foxbox/issues/106
*** Vaani: Investigated Travis failure on openHab.
* Am I blocked? No.
* What will I do tomorrow?
** Couldn't do it today, work with guillaume in regards of Selenium testing of the front
** Continue on Thinkerbell
* What do I have in my queue?
** Continue to use rust as a lib
** Try to improve #[should_panic] in rustc
Michael (Read only - CD Meeting)
Yesterday:
* Meeting on an introduction to metrics and telemetry
* Read up on metrics and telemetry
* Read up on Rust
Today:
* CD meeting this morning
* Install and start playing with Rust
* Go through the Rust guide
Blocked?
* Nope
No-Jun
* What did I do?
** Discussed with jlorenzo and isabel about having test status for each Link project user story tasks
** Now the test framework automatically starts the foxbox
** Spent time thinking my env was broken, but it was the nightly rust
* What will I do?
** read up on ws implmentation on foxbox
Martijn
Working on Bug 1138426 - convert accessibility setIntPref to pushPrefEnv
Still working on getting a docker build
Todo:
Got r-, need to address issues [Bug 1249061] Improve property/attribute handling for marquees
Isabel
-Today
Tried ghosts for the automation of FoxApp UI, but cannot get it working
FoxBox did not compile, I was missing a new library needed, took me a while to have it installed and foxbox running again
Worked on refactor the tests so they respect the po pattern
Got my philiphs hue bulb. Tried to set them up but getting an error
-Tomorrow
PR for refactor setup ui tests
Work on the test plan and test cases based on the existing USs
WIll try to get fixed the problem with my philips hue bulb lights
Blocked: FoxApp UI cannot access it for automation
nhirata:
3/8:
* meetings: systemsfe, CD meeting
* blockers
** bug 1248791 : build pushed; patch reviewed - checkin needed; wes pinged.
** chirimen : bug 1166608 - asked fabrice
** automation for webvr : blocked, need to talk to cvan
* tasks:
** connected me prototypes due date 3/30
*** Weather accumulation data
*** Link + fitbit + lights + outlet + scale + smartlid
*** speak with syncmetrics team
** webvr: need to chat with cvan
3/7:
* meetings: qa standup, moco
* blockers
** bug 1248791 : build pushed; patch reviewed - checkin needed; wes pinged.
** chirimen : bug 1166608 - asked fabrice
** automation for webvr : blocked, need to talk to cvan
* tasks:
** connectedme :
*** working on some prototype ideas ->
**** connect fitbit w/ link + cronjob :
***** received raspberry pi 2, started looking at link documentation; need to read over how it works with the web service.
***** looking into how to utilize cron w/ rust + create a webpage using rust
**** collect weather data :
**** looking at various weather APIs.
*** create some questions for the syncmetrics team: https://public.etherpad-mozilla.org/p/syncmetric_questions
** tested making a b2g build with taskcluster since the change over : https://tools.taskcluster.net/task-inspector/#E5gF52ZhT3OWKNuShpbQiw/
==========
2016-03-07
==========
Johan
* What did I do today?
** FoxLink:
*** Unit test coverage landed. Clarified the numbers on the mailing list
*** Reviewed No-Jun's first tests that simulates Phillips hub
*** https://github.com/fxbox/thinkerbell/issues/35
*** Looked more closely on how rustc implements #[test].
*** Weekly meeting
** Vaani: Documented CI reqs and action items via email.
* Am I blocked? No.
* What will I do tomorrow?
** WOrk with guillaume in regards of Selenium testing of the front
** Continue on Thinkerbell
** Was contacted by dustin for Taskcluster credentials clean up. I'll do the migration tomorrow
** Try to improve #[should_panic] in rustc
* What do I have in my queue?
** Continue to use rust as a lib
Michael
Friday
* Attended Johan/No-Jun/Isabel's Project Link meeting
* Snagged a Raspberry Pi 3
* Attended the initial meeting of the new CD metrics group
* Goal is to try and provide metric and telemetry data for the new conected devices projects
* Group has 2 primary engineers working on this stuff
* My job will be to learn and help out wherever I can
Today
* Read up on telemetry and metrics
* One of the engineers in the group is going to stop by the office and give me an overview of all the things
Blocked?
Nope
No-Jun
* What did I do?
** Sent out the integration test code for Johan's review
** Incorporated feedback from Johan
* What will I do?
** Will experiment with spawning foxbox process from mocha test
** Will look into simulating ws messages between webapp and foxbox
Isabel
-Today
*FoxLink
**Finally got post setup and login requests working. https://github.com/isabelrios/foxbox/blob/testing/test/selenium/post_setup_and_login_test.js
**Could incorporate post set up to the current tests (only to the tests that requires user to be loggedin): https://github.com/isabelrios/foxbox/blob/testing/test/selenium/post_setup_request_ui_session_test.js
**Foxlink weekly meeting
*Will watch Project meeting
-Tomorrow
**See how I can add the post requests to existing tests or create new ones
**FoxApp check the updates, and go back to try to find a way to interact with the elements to start creating tests for the UI
**1:1 Pallavi
Kate
Friday
* FoxLink presentation
* Worked with Paulo to help him set up remote RPI tests and OpenHab
* https://github.com/yglazko/openhab-seleniumjs there are two different ways to run now, on Mac or on-Rpi through Mac!
Today
* Vaani meeting
* Figure out CI strategy
* Start investigating BinTray
* TRIBE this week on 3/9 and 3/10, may be away from the computer
nhirata:
3/7:
* meetings: qa standup, moco
* blockers
** bug 1248791 : build pushed; patch reviewed - checkin needed; wes pinged.
** chirimen : bug 1166608 - asked fabrice
** automation for webvr : blocked, need to talk to cvan
* tasks:
** connectedme :
*** looking at various weather APIs.
** working on some prototype ideas
** Rust/Servo
3/4:
* meetings : link meeting, qa standup
* blockers
** bug 1248791 : build pushed; patch reviewed - checkin needed; wes pinged.
** chirimen : bug 1166608 - asked fabrice
** automation for webvr : blocked, need to talk to cvan
* tasks:
** push new Aries build with fingerprints; linked people to a manual update.zip file for sideloading
** connectedme :
*** looking at various weather APIs.
*** getting in contact with people from Syncmetrics.com
*** ordered hue, and a bunch of other things: idea, connecting fitbit to foxbox and hue and changing lights by requests based on heartrate and awake status and polling. ie setup a webserver to change cronjobs
** Rust/Servo
==========
2016-03-04
==========
Daily Smoke results and Severe issues: