Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1509)

Issue 1472693004: [Do not commit] Sample USB layout tests with Mojo service mocks (Closed)

Created:
5 years, 1 month ago by Ken Rockot(use gerrit already)
Modified:
4 years, 9 months ago
CC:
Aaron Boodman, abarth-chromium, ben+mojo_chromium.org, blink-reviews, chromium-reviews, darin (slow to review), qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@usb-testing-4
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

[Do not commit] Sample USB layout tests with Mojo service mocks Just showing off basic browser service mocking for layout tests. This demonstrates mocking out the browser's USB DeviceManager service to test navigator.usb. BUG=

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+4869 lines, -4 lines) Patch
M third_party/WebKit/LayoutTests/resources/mojo-helpers.js View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
A third_party/WebKit/LayoutTests/usb/getDevice.html View 1 2 3 4 1 chunk +23 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/usb/getDevices.html View 1 2 3 4 1 chunk +21 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/usb/mock-services.html View 1 2 3 4 1 chunk +19 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/usb/resources/device.mojom.js View 1 chunk +3342 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/usb/resources/device_manager.mojom.js View 1 chunk +640 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/usb/resources/fake-devices.js View 1 2 3 1 chunk +21 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/usb/resources/permission_provider.mojom.js View 1 chunk +651 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/usb/resources/usb-helpers.js View 1 2 3 4 1 chunk +148 lines, -0 lines 0 comments Download

Messages

Total messages: 12 (5 generated)
Ken Rockot(use gerrit already)
FYI - what testing may sort of look like when all the dependent patches land
5 years, 1 month ago (2015-11-24 01:19:57 UTC) #2
Ken Rockot(use gerrit already)
On 2015/11/24 at 01:19:57, Ken Rockot wrote: > FYI - what testing may sort of ...
5 years, 1 month ago (2015-11-24 01:27:05 UTC) #3
Ken Rockot(use gerrit already)
Hey folks, here's a partial CL which uses the new layout test mojo bindings to ...
4 years, 11 months ago (2016-01-28 04:39:53 UTC) #6
haraken
On 2016/01/28 04:39:53, Ken Rockot wrote: > Hey folks, here's a partial CL which uses ...
4 years, 11 months ago (2016-01-28 06:33:15 UTC) #8
Ken Rockot(use gerrit already)
On 2016/01/28 at 06:33:15, haraken wrote: > On 2016/01/28 04:39:53, Ken Rockot wrote: > > ...
4 years, 11 months ago (2016-01-28 06:39:02 UTC) #9
haraken
On 2016/01/28 06:39:02, Ken Rockot wrote: > On 2016/01/28 at 06:33:15, haraken wrote: > > ...
4 years, 11 months ago (2016-01-28 06:46:37 UTC) #11
Yuki
4 years, 11 months ago (2016-01-28 07:05:55 UTC) #12
On 2016/01/28 06:39:02, Ken Rockot wrote:
> On 2016/01/28 at 06:33:15, haraken wrote:
> > On 2016/01/28 04:39:53, Ken Rockot wrote:
> > > Hey folks, here's a partial CL which uses the new layout test mojo
bindings
> to
> > > mock a service consumed by web API. I think this will be a great way in
> general
> > > to mock out new service implementations going forward.
> > > 
> > > One major concern I have is how to deal with the generated JS bindings. I
> see
> > > three OK options:
> > > 
> > >   1. Build them into content resources so they're always available by name
> to
> > > the module system
> > > 
> > >   2. Have a standard generated output location to load them from the test
> > > runner; add build rules to copy them there.
> > > 
> > >   3. Do what this CL does and keep them in version control next to the
> tests,
> > > optionally with build rules to copy them in place on bindings update.
> > > 
> > > 
> > > I don't like #3 because it means committing generated resources (ick); but
> it's
> > > probably the fastest path forward.
> > > 
> > > #2 may be doable but I'm not sure what precedent there is for layout tests
> > > depending on generated output files in the build. seems like there's
> potential
> > > for some ugliness here.
> > > 
> > > #1 seems OK if we restrict the bindings content_shell only, and simplify
the
> > > process of adding new JS bindings -- e.g. we could add a build rule that
is
> just
> > > a list of mojom targets, and a tool that slurps them all into a generated
> > > resource file.
> > > 
> > > WDYT?
> > 
> > I think #1 sounds reasonable. Blink generates various bindings into
> out/{Release,Debug}/gen/blink/*.
> > 
> > Just to confirm: We're aiming at the following design, right?
> > 
> >   Mojo services (in the browser process) <== Mojo ==> Mojo clients (in the
> renderer process; written in C++ in Blink's platform/)
> >                                   ^========= Mojo ==> Tests of the Mojo
> services (in the renderer process; written in JS in LayoutTests)
> > 
> > Would you help me understand why we're not aiming at the following design?
> (I'm not objecting to the above design; just want to understand the
background.)
> > 
> >   Mojo services (in the browser process) <== Mojo ==> Mojo clients (in the
> renderer process; written in C++ in Blink's platform/) <== Mojo ==> Tests of
the
> Mojo clients (in the renderer process; written in C++ in platform/'s
unittests)
> 
> There isn't much background, and we could really go either way here. :)
> 
> In my opinion since all layout tests will be written in JS already, writing
> their corresponding mock services in JS will allow developers to move more
> quickly. All the test code is in one place and there's no need to switch
between
> the different bindings styles of C++ and JS.
> 
> Do you see any particular advantages to writing the mocks alongside platform
> unittests? If it's likely that these unittests will also consume the mock
> services in many cases, then that makes sense to me. But perhaps that won't be
> the case.
> 
> Of course a third option is that we can make it really easy for developers to
do
> either one and choose the approach that works best for their specific needs.

Does option #1 mean that you're going to generate the JS bindings into a single
root directory?  Then, I don't see much difference between #1 and #2.  If
generated JS bindings will be stored in a single root directory and they will be
indexed in the code search (like out/Debug/gen/blink/), I love it.

Powered by Google App Engine
This is Rietveld 408576698