Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

starboard/nplb: Fold nplb_evergreen_compat_tests into nplb proper #4946

Conversation

yell0wd0g
Copy link
Contributor

@yell0wd0g yell0wd0g commented Feb 21, 2025

This is a follow-up to #4831, rolling nplb_evergreen_compat_tests into nplb proper.

Run via ./out/linux-x64x11_devel/nplb --gtest_filter=*CrashpadConfigTest*:*SabiTest*:*ExecutableMemoryTest*:*MaxFileNameTest*:*StorageTest*:*LoaderAppMetricsTest:*FontsTest* --

Two sets of test failed on my Linux and needed attention:

  • CrashpadConfigTest.VerifyUploadCert was IIUC broken due to an
    extra ...app/cobalt/content... path manually added to the cert
    location. Looking at the GN ssl:copy_ssl_certificates target, it
    seems to agree with GetCACertificatesPath() in that the extra path
    is not needed. Discussing this with @y4vor, we decided to add a new
    helper target copy_ssl_certificates_evergreen to put the certs
    in the right spot.
  • FontsTest.* needed deps on fonts:copy_font_data GN targets
    (both data_deps and deps). This worked, but I had to comment
    out the install_content = true statements in that BUILD.gn (it's
    unclear whether this would break other things). Said GN target
    uses exec_script and needs an exception in //.gn, this CL adds
    that too.

Asides from it, some unnecessary test classes are removed, and some
preprocessor logic simplified.

Bug: b/384819454

Copy link
Contributor

@andrewsavage1 andrewsavage1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is reasonable and LGTM but I'll leave it to Holden who knows more about these tests

@hlwarriner
Copy link
Contributor

hlwarriner commented Feb 21, 2025

These tests are tricky and I think it unfortunately would be more trouble than it's worth to move them into nplb at this time.

They were never designed to run in CI and there are several reasons why they can't currently be expected to pass in CI across our reference devices: https://b.corp.google.com/issues/292138589#comment2. We could add filters for the problematic tests, but we'd probably end up filtering over half of them.

We may end up simply removing these tests soon. They were originally intended as a quick way for partners to assess progress in their Evergreen integrations, and their test coverage is very minimal compared to the Evergreen YTS tests. I need to revisit b/292138589 and make a proposal, but I think what we'll end up doing is retiring these tests and adding any extra coverage they provide to YTS.

Also, if we we do want to land this PR then we'll need to update a few partner docs (e.g., https://github.com/youtube/cobalt/blob/main/starboard/doc/evergreen/cobalt_evergreen_overview.md, https://developers.google.com/youtube/cobalt/docs/development/setup-android).

@yuying-y @lamdbui in case you disagree with anything here.

@yell0wd0g
Copy link
Contributor Author

We may end up simply removing these tests soon.

I like this part. If these tests are nplb, then they should run there. Otherwise it's hard to justify their existence; the point of nplb is to be a single integration test.

@yell0wd0g yell0wd0g force-pushed the b_384819454__sidegig__nplb_evergreen_compat_tests__to_nplb branch from 07e7af5 to 181395e Compare February 21, 2025 21:06
@yell0wd0g
Copy link
Contributor Author

@hlwarriner and I talked about this. Next PR proposal is:

  • Build all of these tests when sb_is_evergreen_compatible (this CL asserts for it in the files instead of using it to sandwich the contents) as part of nplb.
  • Some of the actual tests fail on e.g. Linux; this is because sb_is_evergreen_compatible doesn't mean sb_is_evergreen -- so this CL adds GTEST_SKIP() in those cases. (These test IIUC should also be skipped on e.g. Raspi, but not on e.g. RDK which is a fully fledged EG board).

@y4vor FYI

@hlwarriner
Copy link
Contributor

@hlwarriner and I talked about this. Next PR proposal is:

  • Build all of these tests when sb_is_evergreen_compatible (this CL asserts for it in the files instead of using it to sandwich the contents) as part of nplb.
  • Some of the actual tests fail on e.g. Linux; this is because sb_is_evergreen_compatible doesn't mean sb_is_evergreen -- so this CL adds GTEST_SKIP() in those cases. (These test IIUC should also be skipped on e.g. Raspi, but not on e.g. RDK which is a fully fledged EG board).

@y4vor FYI

Just want to clarify something about sb_is_evergreen_compatible and sb_is_evergreen.

  • sb_is_evergreen_compatible should only be set for "loader platforms" that can build the elf_loader and loader_app which, when run, can load the evergreen shared library (provided by a different platform). An evergreen partner building their partner-built components would want to set this in their port.
  • sb_is_evergreen should only be set for the "evergreen platform" that is used to build the evergreen shared library. Partners should never set this, since these platforms are maintained by google (for a handful of architectures) and libcobalt.so is built by google.

What's kind of missing, and is highlighted by issue 2 from https://b.corp.google.com/issues/292138589#comment2, is something to capture whether an sb_is_evergreen_compatible platform is actively being used as an evergreen loader platform in the current build. In other words, linux-x64x11 is always evergreen-compatible but it isn't always used as an evergreen loader platform...sometimes it's just used to build a cobalt executable and to run plain, non-evergreen cobalt.

@yell0wd0g
Copy link
Contributor Author

@hlwarriner and I talked about this. Next PR proposal is:

  • Build all of these tests when sb_is_evergreen_compatible (this CL asserts for it in the files instead of using it to sandwich the contents) as part of nplb.
  • Some of the actual tests fail on e.g. Linux; this is because sb_is_evergreen_compatible doesn't mean sb_is_evergreen -- so this CL adds GTEST_SKIP() in those cases. (These test IIUC should also be skipped on e.g. Raspi, but not on e.g. RDK which is a fully fledged EG board).

@y4vor FYI

Just want to clarify something about sb_is_evergreen_compatible and sb_is_evergreen.

  • sb_is_evergreen_compatible should only be set for "loader platforms" that can build the elf_loader and loader_app which, when run, can load the evergreen shared library (provided by a different platform). An evergreen partner building their partner-built components would want to set this in their port.
  • sb_is_evergreen should only be set for the "evergreen platform" that is used to build the evergreen shared library. Partners should never set this, since these platforms are maintained by google (for a handful of architectures) and libcobalt.so is built by google.

What's kind of missing, and is highlighted by issue 2 from b.corp.google.com/issues/292138589#comment2, is something to capture whether an sb_is_evergreen_compatible platform is actively being used as an evergreen loader platform in the current build. In other words, linux-x64x11 is always evergreen-compatible but it isn't always used as an evergreen loader platform...sometimes it's just used to build a cobalt executable and to run plain, non-evergreen cobalt.

To further the point of this CL, and perhaps erroneously, this is my understanding:

sb_is_evergreen_compatible sb_is_evergreen
Linux yes no
raspi yes No?
rdk yes yes!
aosp yes yes?
Android TV No (!) No
partner TVs (Samsung etc) yes ofc yes!

Ofc sb_is_evergreen -> sb_is_evergreen_compatible (with -> being a logical if-then, "implies").

@hlwarriner
Copy link
Contributor

@hlwarriner and I talked about this. Next PR proposal is:

  • Build all of these tests when sb_is_evergreen_compatible (this CL asserts for it in the files instead of using it to sandwich the contents) as part of nplb.
  • Some of the actual tests fail on e.g. Linux; this is because sb_is_evergreen_compatible doesn't mean sb_is_evergreen -- so this CL adds GTEST_SKIP() in those cases. (These test IIUC should also be skipped on e.g. Raspi, but not on e.g. RDK which is a fully fledged EG board).

@y4vor FYI

Just want to clarify something about sb_is_evergreen_compatible and sb_is_evergreen.

  • sb_is_evergreen_compatible should only be set for "loader platforms" that can build the elf_loader and loader_app which, when run, can load the evergreen shared library (provided by a different platform). An evergreen partner building their partner-built components would want to set this in their port.
  • sb_is_evergreen should only be set for the "evergreen platform" that is used to build the evergreen shared library. Partners should never set this, since these platforms are maintained by google (for a handful of architectures) and libcobalt.so is built by google.

What's kind of missing, and is highlighted by issue 2 from b.corp.google.com/issues/292138589#comment2, is something to capture whether an sb_is_evergreen_compatible platform is actively being used as an evergreen loader platform in the current build. In other words, linux-x64x11 is always evergreen-compatible but it isn't always used as an evergreen loader platform...sometimes it's just used to build a cobalt executable and to run plain, non-evergreen cobalt.

To further the point of this CL, and perhaps erroneously, this is my understanding:

sb_is_evergreen_compatible sb_is_evergreen
Linux yes no
raspi yes No?
rdk yes yes!
aosp yes yes?
Android TV No (!) No
partner TVs (Samsung etc) yes ofc yes!
Ofc sb_is_evergreen -> sb_is_evergreen_compatible (with -> being a logical if-then, "implies").

No, I don't think that's quite right. sb_is_evergreen doesn't imply sb_is_evergreen_compatible, they are actually mutually exclusive.

A couple examples from 25.lts.1+ of evergreen-compatible platform and evergreen platform pairs, from our reference ports:

  • Evergreen-compatible platform //starboard/linux/x64x11 can be used with Evergreen platform //starboard/evergreen/x64
  • Evergreen-compatible platform //starboard/raspi/2 can be used with Evergreen platform //starboard/evergreen/arm/hardfp

@y4vor
Copy link
Contributor

y4vor commented Feb 24, 2025

@hlwarriner and I talked about this. Next PR proposal is:

  • Build all of these tests when sb_is_evergreen_compatible (this CL asserts for it in the files instead of using it to sandwich the contents) as part of nplb.
  • Some of the actual tests fail on e.g. Linux; this is because sb_is_evergreen_compatible doesn't mean sb_is_evergreen -- so this CL adds GTEST_SKIP() in those cases. (These test IIUC should also be skipped on e.g. Raspi, but not on e.g. RDK which is a fully fledged EG board).

@y4vor FYI

Just want to clarify something about sb_is_evergreen_compatible and sb_is_evergreen.

  • sb_is_evergreen_compatible should only be set for "loader platforms" that can build the elf_loader and loader_app which, when run, can load the evergreen shared library (provided by a different platform). An evergreen partner building their partner-built components would want to set this in their port.
  • sb_is_evergreen should only be set for the "evergreen platform" that is used to build the evergreen shared library. Partners should never set this, since these platforms are maintained by google (for a handful of architectures) and libcobalt.so is built by google.

What's kind of missing, and is highlighted by issue 2 from b.corp.google.com/issues/292138589#comment2, is something to capture whether an sb_is_evergreen_compatible platform is actively being used as an evergreen loader platform in the current build. In other words, linux-x64x11 is always evergreen-compatible but it isn't always used as an evergreen loader platform...sometimes it's just used to build a cobalt executable and to run plain, non-evergreen cobalt.

To further the point of this CL, and perhaps erroneously, this is my understanding:
sb_is_evergreen_compatible sb_is_evergreen
Linux yes no
raspi yes No?
rdk yes yes!
aosp yes yes?
Android TV No (!) No
partner TVs (Samsung etc) yes ofc yes!
Ofc sb_is_evergreen -> sb_is_evergreen_compatible (with -> being a logical if-then, "implies").

No, I don't think that's quite right. sb_is_evergreen doesn't imply sb_is_evergreen_compatible, they are actually mutually exclusive.

A couple examples from 25.lts.1+ of evergreen-compatible platform and evergreen platform pairs, from our reference ports:

  • Evergreen-compatible platform //starboard/linux/x64x11 can be used with Evergreen platform //starboard/evergreen/x64
  • Evergreen-compatible platform //starboard/raspi/2 can be used with Evergreen platform //starboard/evergreen/arm/hardfp

The meaning of these flags is the following:
sb_is_evergreen: Applies only above Starboard and means it is an Evergreen/Hermetic build.
sb_is_evergreen_compatible: Applies only at the Starboard implementation and means the build would be used for Evergreen.

@yell0wd0g yell0wd0g force-pushed the b_384819454__sidegig__nplb_evergreen_compat_tests__to_nplb branch from c19fee2 to 724a860 Compare February 25, 2025 00:27
@yell0wd0g
Copy link
Contributor Author

The meaning of these flags is the following:
sb_is_evergreen: Applies only above Starboard and means it is an Evergreen/Hermetic build.
sb_is_evergreen_compatible: Applies only at the Starboard implementation and means the build would be used for Evergreen.

Gotcha thanks for the explanation. I've changed the code to be more specific: SKIP those 3 test cases on platforms where we don't have the paths. Currently this is only Linux, since there it doesn't make sense to have to create e.g. kSbSystemPathFontDirectory just for passing an integration test. PTAL

@yell0wd0g yell0wd0g force-pushed the b_384819454__sidegig__nplb_evergreen_compat_tests__to_nplb branch from 724a860 to 5343c27 Compare February 26, 2025 06:06
@yell0wd0g yell0wd0g requested a review from a team as a code owner February 26, 2025 06:06
Copy link
Contributor

@hlwarriner hlwarriner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Left one comment requesting a small doc change but otherwise lgtm.

Let's just wait for approval from @y4vor , too.

- CrashpadConfigTest.VerifyUploadCert was IIUC broken due to
an extra ...app/cobalt/content... path manually added to the
cert location. Looking at the GN ssl:copy_ssl_certificates
target, it seems to agree with GetCACertificatesPath(). The
test logic is fixed and extended. The class is unnecessary,
so it's removed.
- FontsTest.* needed deps on fonts:copy_font_data GN targets
(both data_deps and deps). This worked, but I had to comment
out the `install_content = true` statements in that BUILD.gn
(unclear whether this would break other things).  Said GN
target uses exec_script and needs an exception in //.gn.
…ing copy_ssl_certificates_evergreen target. Removed unnecessary Gtest classes
@yell0wd0g yell0wd0g force-pushed the b_384819454__sidegig__nplb_evergreen_compat_tests__to_nplb branch from 0da60e0 to 960a0d4 Compare February 27, 2025 04:34
Copy link
Contributor Author

@yell0wd0g yell0wd0g left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@y4vor PTAL

@andrewsavage1 I had to do something fishy in starboard/content/fonts/BUILD.gn -- would you mind taking a look..? Thanks!

@yell0wd0g yell0wd0g force-pushed the b_384819454__sidegig__nplb_evergreen_compat_tests__to_nplb branch from 1e5d5f6 to a07f133 Compare March 3, 2025 18:58
@yell0wd0g yell0wd0g merged commit 6e8f112 into youtube:main Mar 3, 2025
136 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants