-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12779 from rabbitmq/mergify/bp/v4.0.x/pr-12749
4.0.5: Management UI: serve all static assets with a control-cache header (backport #12749)
- Loading branch information
Showing
31 changed files
with
158 additions
and
281 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,24 +69,24 @@ jobs: | |
cd ${SELENIUM_DIR} | ||
docker build -t mocha-test --target test . | ||
- name: Run full ui suites on a standalone rabbitmq server | ||
- name: Run short ui suites on a standalone rabbitmq server | ||
run: | | ||
RABBITMQ_DOCKER_IMAGE=bazel/packaging/docker-image:rabbitmq-amd64 \ | ||
${SELENIUM_DIR}/run-suites.sh | ||
mkdir -p /tmp/full-suite | ||
mv /tmp/selenium/* /tmp/full-suite | ||
mkdir -p /tmp/full-suite/logs | ||
mv ${SELENIUM_DIR}/logs/* /tmp/full-suite/logs | ||
mkdir -p /tmp/full-suite/screens | ||
mv ${SELENIUM_DIR}/screens/* /tmp/full-suite/screens | ||
ADDON_PROFILES=cluster ${SELENIUM_DIR}/run-suites.sh short-suite-management-ui | ||
mkdir -p /tmp/short-suite | ||
mv /tmp/selenium/* /tmp/short-suite | ||
mkdir -p /tmp/short-suite/logs | ||
mv ${SELENIUM_DIR}/logs/* /tmp/short-suite/logs | ||
mkdir -p /tmp/short-suite/screens | ||
mv ${SELENIUM_DIR}/screens/* /tmp/short-suite/screens | ||
- name: Upload Test Artifacts | ||
if: always() | ||
uses: actions/[email protected] | ||
with: | ||
name: test-artifacts-${{ matrix.browser }}-${{ matrix.erlang_version }} | ||
path: | | ||
/tmp/full-suite | ||
/tmp/short-suite | ||
summary-selenium: | ||
needs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
%% This Source Code Form is subject to the terms of the Mozilla Public | ||
%% License, v. 2.0. If a copy of the MPL was not distributed with this | ||
%% file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
%% | ||
%% Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved. | ||
%% | ||
|
||
-module(rabbit_mgmt_wm_version). | ||
|
||
-export([init/2]). | ||
-export([to_json/2, content_types_provided/2]). | ||
-export([variances/2]). | ||
|
||
-include_lib("rabbit_common/include/rabbit.hrl"). | ||
-include_lib("rabbitmq_management_agent/include/rabbit_mgmt_records.hrl"). | ||
|
||
%%-------------------------------------------------------------------- | ||
|
||
init(Req, _State) -> | ||
{cowboy_rest, rabbit_mgmt_headers:set_no_cache_headers( | ||
rabbit_mgmt_headers:set_common_permission_headers(Req, ?MODULE), ?MODULE), | ||
#context{}}. | ||
|
||
variances(Req, Context) -> | ||
{[<<"accept-encoding">>, <<"origin">>], Req, Context}. | ||
|
||
content_types_provided(ReqData, Context) -> | ||
{rabbit_mgmt_util:responder_map(to_json), ReqData, Context}. | ||
|
||
to_json(ReqData, Context) -> | ||
Version = case rabbit:product_info() of | ||
#{product_version := Value} -> Value; | ||
#{product_base_version := Base} -> Base | ||
end, | ||
rabbit_mgmt_util:reply(list_to_binary(Version), ReqData, Context). | ||
|
||
%%-------------------------------------------------------------------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
rm -r $TMPDIR/rabbitmq-test-instances |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.