-
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 #12749 from rabbitmq/improve-brwoser-cache-control
Management UI: serve all static assets with a control-cache header
- Loading branch information
Showing
26 changed files
with
141 additions
and
204 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 |
---|---|---|
|
@@ -56,21 +56,20 @@ 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: | | ||
IMAGE_TAG=$(find PACKAGES/rabbitmq-server-generic-unix-*.tar.xz | awk -F 'PACKAGES/rabbitmq-server-generic-unix-|.tar.xz' '{print $2}') | ||
RABBITMQ_DOCKER_IMAGE=pivotalrabbitmq/rabbitmq:$IMAGE_TAG \ | ||
${SELENIUM_DIR}/run-suites.sh short-suite-management-ui | ||
mkdir -p /tmp/full-suite | ||
mv /tmp/selenium/* /tmp/full-suite | ||
${SELENIUM_DIR}/run-suites.sh short-suite-management-ui | ||
mkdir -p /tmp/short-suite | ||
mv /tmp/selenium/* /tmp/short-suite | ||
- 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: | ||
|
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
22 changes: 0 additions & 22 deletions
22
selenium/test/multi-oauth/certs/server_rabbitmq_certificate.pem
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.