UNCLASSIFIED

Commit b29ab7ef authored by Micah Nagel's avatar Micah Nagel 💰
Browse files

Merge branch 'mattermost-5-38' into 'main'

Update to 5.38.2

Closes #14

See merge request !58
parents a8803d72 12e1fc1b
Pipeline #451421 passed with stages
in 6 minutes and 7 seconds
...@@ -3,6 +3,12 @@ ...@@ -3,6 +3,12 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
--- ---
## [0.2.0-bb.0] - 2021-08-27
### Changed
- Updated to latest IB 5.38.2
- Modified tests to remove buggy "site name" test and accomodate the new "tutorial" setup
## [0.1.8-bb.0] - 2021-08-19 ## [0.1.8-bb.0] - 2021-08-19
### Fix ### Fix
- Fixes issue with default bucket creation already existing - Fixes issue with default bucket creation already existing
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
apiVersion: v2 apiVersion: v2
name: mattermost name: mattermost
type: application type: application
version: "0.1.8-bb.1" version: "0.2.0-bb.0"
appVersion: "5.37.0" appVersion: "5.37.0"
description: "Deployment of mattermost" description: "Deployment of mattermost"
keywords: keywords:
......
...@@ -41,9 +41,11 @@ describe('Mattermost Healthcheck', function() { ...@@ -41,9 +41,11 @@ describe('Mattermost Healthcheck', function() {
cy.title().should('include', 'Town Square - Big Bang') cy.title().should('include', 'Town Square - Big Bang')
} }
}) })
cy.get("body").then($body => { cy.get("body").then($body => {
if ($body.find('a[id="tutorialSkipLink"]').length > 0) { if ($body.find('button[class="SidebarNextSteps__close"]').length > 0) {
cy.get('a[id="tutorialSkipLink"]').click() cy.get('button[class="SidebarNextSteps__close"]').click()
cy.get('button[type="submit"] > span').contains("Remove").click()
} }
}) })
}) })
...@@ -51,6 +53,7 @@ describe('Mattermost Healthcheck', function() { ...@@ -51,6 +53,7 @@ describe('Mattermost Healthcheck', function() {
it('should allow chatting', function() { it('should allow chatting', function() {
let randomChat = "Hello " + Math.random().toString(36).substring(8); let randomChat = "Hello " + Math.random().toString(36).substring(8);
cy.get('textarea[id="post_textbox"]').type(randomChat).type('{enter}') cy.get('textarea[id="post_textbox"]').type(randomChat).type('{enter}')
cy.reload()
cy.get('p').contains(randomChat).should('be.visible') cy.get('p').contains(randomChat).should('be.visible')
}) })
...@@ -62,16 +65,4 @@ describe('Mattermost Healthcheck', function() { ...@@ -62,16 +65,4 @@ describe('Mattermost Healthcheck', function() {
cy.get('span').contains("Test Connection").click() cy.get('span').contains("Test Connection").click()
cy.get('div[class="alert alert-success"]').should('be.visible') cy.get('div[class="alert alert-success"]').should('be.visible')
}) })
it('should save settings changes', function() {
cy.get('button[aria-label="main menu"]').click()
cy.get('a[href="/admin_console"]').click()
cy.get('a[id="site_config/customization"]').click()
let randomName = Math.random().toString(36).substring(8);
cy.get('input[id="TeamSettings.SiteName"]').clear().type(randomName)
cy.get('button[id="saveSetting"]').click()
cy.reload()
cy.title().should('include', randomName)
})
}) })
...@@ -36,7 +36,7 @@ sso: ...@@ -36,7 +36,7 @@ sso:
# Repo and image tag # Repo and image tag
image: image:
name: registry1.dso.mil/ironbank/opensource/mattermost/mattermost name: registry1.dso.mil/ironbank/opensource/mattermost/mattermost
tag: 5.37.0 tag: 5.38.2
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
global: global:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment