Commit 8a3fdede authored by GitLab Bot's avatar GitLab Bot

Add latest changes from gitlab-org/gitlab@master

parent 8e75748a
...@@ -14,6 +14,11 @@ export default { ...@@ -14,6 +14,11 @@ export default {
GlTooltip: GlTooltipDirective, GlTooltip: GlTooltipDirective,
}, },
props: { props: {
name: {
type: String,
required: false,
default: '',
},
imageUrl: { imageUrl: {
type: String, type: String,
required: true, required: true,
......
...@@ -4,7 +4,7 @@ import { mapActions, mapState } from 'vuex'; ...@@ -4,7 +4,7 @@ import { mapActions, mapState } from 'vuex';
import createFlash from '~/flash'; import createFlash from '~/flash';
import { s__, sprintf } from '~/locale'; import { s__, sprintf } from '~/locale';
import LoadingButton from '~/vue_shared/components/loading_button.vue'; import LoadingButton from '~/vue_shared/components/loading_button.vue';
import { GlLoadingIcon } from '@gitlab/ui'; import { GlLoadingIcon, GlFormInput, GlFormGroup } from '@gitlab/ui';
import createEmptyBadge from '../empty_badge'; import createEmptyBadge from '../empty_badge';
import Badge from './badge.vue'; import Badge from './badge.vue';
...@@ -16,6 +16,8 @@ export default { ...@@ -16,6 +16,8 @@ export default {
Badge, Badge,
LoadingButton, LoadingButton,
GlLoadingIcon, GlLoadingIcon,
GlFormInput,
GlFormGroup,
}, },
props: { props: {
isEditing: { isEditing: {
...@@ -64,6 +66,18 @@ export default { ...@@ -64,6 +66,18 @@ export default {
renderedLinkUrl() { renderedLinkUrl() {
return this.renderedBadge ? this.renderedBadge.renderedLinkUrl : ''; return this.renderedBadge ? this.renderedBadge.renderedLinkUrl : '';
}, },
name: {
get() {
return this.badge ? this.badge.name : '';
},
set(name) {
const badge = this.badge || createEmptyBadge();
this.updateBadgeInForm({
...badge,
name,
});
},
},
imageUrl: { imageUrl: {
get() { get() {
return this.badge ? this.badge.imageUrl : ''; return this.badge ? this.badge.imageUrl : '';
...@@ -154,6 +168,10 @@ export default { ...@@ -154,6 +168,10 @@ export default {
novalidate novalidate
@submit.prevent.stop="onSubmit" @submit.prevent.stop="onSubmit"
> >
<gl-form-group :label="s__('Badges|Name')" label-for="badge-name">
<gl-form-input id="badge-name" v-model="name" />
</gl-form-group>
<div class="form-group"> <div class="form-group">
<label for="badge-link-url" class="label-bold">{{ s__('Badges|Link') }}</label> <label for="badge-link-url" class="label-bold">{{ s__('Badges|Link') }}</label>
<p v-html="helpText"></p> <p v-html="helpText"></p>
......
...@@ -43,13 +43,14 @@ export default { ...@@ -43,13 +43,14 @@ export default {
<badge <badge
:image-url="badge.renderedImageUrl" :image-url="badge.renderedImageUrl"
:link-url="badge.renderedLinkUrl" :link-url="badge.renderedLinkUrl"
class="table-section section-40" class="table-section section-30"
/> />
<span class="table-section section-30 str-truncated">{{ badge.linkUrl }}</span> <div class="table-section section-30">
<div class="table-section section-15"> <label class="label-bold str-truncated mb-0">{{ badge.name }}</label>
<span class="badge badge-pill">{{ badgeKindText }}</span> <span class="badge badge-pill">{{ badgeKindText }}</span>
</div> </div>
<div class="table-section section-15 table-button-footer"> <span class="table-section section-30 str-truncated">{{ badge.linkUrl }}</span>
<div class="table-section section-10 table-button-footer">
<div v-if="canEditBadge" class="table-action-buttons"> <div v-if="canEditBadge" class="table-action-buttons">
<button <button
:disabled="badge.isDeleting" :disabled="badge.isDeleting"
......
export default () => ({ export default () => ({
name: '',
imageUrl: '', imageUrl: '',
isDeleting: false, isDeleting: false,
linkUrl: '', linkUrl: '',
......
import axios from '~/lib/utils/axios_utils'; import axios from '~/lib/utils/axios_utils';
import types from './mutation_types'; import types from './mutation_types';
import { convertObjectPropsToCamelCase } from '~/lib/utils/common_utils';
export const transformBackendBadge = badge => ({ export const transformBackendBadge = badge => ({
id: badge.id, ...convertObjectPropsToCamelCase(badge, true),
imageUrl: badge.image_url,
kind: badge.kind,
linkUrl: badge.link_url,
renderedImageUrl: badge.rendered_image_url,
renderedLinkUrl: badge.rendered_link_url,
isDeleting: false, isDeleting: false,
}); });
...@@ -27,6 +23,7 @@ export default { ...@@ -27,6 +23,7 @@ export default {
dispatch('requestNewBadge'); dispatch('requestNewBadge');
return axios return axios
.post(endpoint, { .post(endpoint, {
name: newBadge.name,
image_url: newBadge.imageUrl, image_url: newBadge.imageUrl,
link_url: newBadge.linkUrl, link_url: newBadge.linkUrl,
}) })
...@@ -141,6 +138,7 @@ export default { ...@@ -141,6 +138,7 @@ export default {
dispatch('requestUpdatedBadge'); dispatch('requestUpdatedBadge');
return axios return axios
.put(endpoint, { .put(endpoint, {
name: badge.name,
image_url: badge.imageUrl, image_url: badge.imageUrl,
link_url: badge.linkUrl, link_url: badge.linkUrl,
}) })
......
...@@ -72,7 +72,7 @@ export const truncate = (string, maxLength) => `${string.substr(0, maxLength - 3 ...@@ -72,7 +72,7 @@ export const truncate = (string, maxLength) => `${string.substr(0, maxLength - 3
* @param {String} sha * @param {String} sha
* @returns {String} * @returns {String}
*/ */
export const truncateSha = sha => sha.substr(0, 8); export const truncateSha = sha => sha.substring(0, 8);
const ELLIPSIS_CHAR = ''; const ELLIPSIS_CHAR = '';
export const truncatePathMiddleToLength = (text, maxWidth) => { export const truncatePathMiddleToLength = (text, maxWidth) => {
......
import Tracking from '~/tracking';
const trackDashboardLoad = ({ label, value }) =>
Tracking.event(document.body.dataset.page, 'dashboard_fetch', {
label,
property: 'count',
value,
});
export default trackDashboardLoad;
import * as types from './mutation_types'; import * as types from './mutation_types';
import axios from '~/lib/utils/axios_utils'; import axios from '~/lib/utils/axios_utils';
import createFlash from '~/flash'; import createFlash from '~/flash';
import trackDashboardLoad from '../monitoring_tracking_helper';
import statusCodes from '../../lib/utils/http_status'; import statusCodes from '../../lib/utils/http_status';
import { backOff } from '../../lib/utils/common_utils'; import { backOff } from '../../lib/utils/common_utils';
import { s__, __ } from '../../locale'; import { s__, __ } from '../../locale';
...@@ -45,7 +46,7 @@ export const requestMetricsDashboard = ({ commit }) => { ...@@ -45,7 +46,7 @@ export const requestMetricsDashboard = ({ commit }) => {
export const receiveMetricsDashboardSuccess = ({ commit, dispatch }, { response, params }) => { export const receiveMetricsDashboardSuccess = ({ commit, dispatch }, { response, params }) => {
commit(types.SET_ALL_DASHBOARDS, response.all_dashboards); commit(types.SET_ALL_DASHBOARDS, response.all_dashboards);
commit(types.RECEIVE_METRICS_DATA_SUCCESS, response.dashboard.panel_groups); commit(types.RECEIVE_METRICS_DATA_SUCCESS, response.dashboard.panel_groups);
dispatch('fetchPrometheusMetrics', params); return dispatch('fetchPrometheusMetrics', params);
}; };
export const receiveMetricsDashboardFailure = ({ commit }, error) => { export const receiveMetricsDashboardFailure = ({ commit }, error) => {
commit(types.RECEIVE_METRICS_DATA_FAILURE, error); commit(types.RECEIVE_METRICS_DATA_FAILURE, error);
...@@ -83,10 +84,12 @@ export const fetchDashboard = ({ state, dispatch }, params) => { ...@@ -83,10 +84,12 @@ export const fetchDashboard = ({ state, dispatch }, params) => {
return backOffRequest(() => axios.get(state.dashboardEndpoint, { params })) return backOffRequest(() => axios.get(state.dashboardEndpoint, { params }))
.then(resp => resp.data) .then(resp => resp.data)
.then(response => { .then(response => dispatch('receiveMetricsDashboardSuccess', { response, params }))
dispatch('receiveMetricsDashboardSuccess', { .then(() => {
response, const dashboardType = state.currentDashboard === '' ? 'default' : 'custom';
params, return trackDashboardLoad({
label: `${dashboardType}_metrics_dashboard`,
value: state.metricsWithData.length,
}); });
}) })
.catch(error => { .catch(error => {
......
<script>
import { __, sprintf } from '~/locale';
import { GlLink, GlTooltipDirective } from '@gitlab/ui';
import { truncateSha } from '~/lib/utils/text_utility';
import Icon from '~/vue_shared/components/icon.vue';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
import ExpandButton from '~/vue_shared/components/expand_button.vue';
export default {
name: 'EvidenceBlock',
components: {
ClipboardButton,
ExpandButton,
GlLink,
Icon,
},
directives: {
GlTooltip: GlTooltipDirective,
},
props: {
release: {
type: Object,
required: true,
},
},
computed: {
evidenceTitle() {
return sprintf(__('%{tag}-evidence.json'), { tag: this.release.tag_name });
},
evidenceUrl() {
return this.release.assets && this.release.assets.evidence_file_path;
},
shortSha() {
return truncateSha(this.sha);
},
sha() {
return this.release.evidence_sha;
},
},
};
</script>
<template>
<div>
<div class="card-text prepend-top-default">
<b>
{{ __('Evidence collection') }}
</b>
</div>
<div class="d-flex align-items-baseline">
<gl-link
v-gl-tooltip
class="monospace"
:title="__('Download evidence JSON')"
:download="evidenceTitle"
:href="evidenceUrl"
>
<icon name="review-list" class="align-top append-right-4" /><span>{{ evidenceTitle }}</span>
</gl-link>
<expand-button>
<template slot="short">
<span class="js-short monospace">{{ shortSha }}</span>
</template>
<template slot="expanded">
<span class="js-expanded monospace gl-pl-1">{{ sha }}</span>
</template>
</expand-button>
<clipboard-button
:title="__('Copy commit SHA')"
:text="sha"
css-class="btn-default btn-transparent btn-clipboard"
/>
</div>
</div>
</template>
...@@ -11,10 +11,12 @@ import { getLocationHash } from '~/lib/utils/url_utility'; ...@@ -11,10 +11,12 @@ import { getLocationHash } from '~/lib/utils/url_utility';
import { scrollToElement } from '~/lib/utils/common_utils'; import { scrollToElement } from '~/lib/utils/common_utils';
import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin'; import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import ReleaseBlockFooter from './release_block_footer.vue'; import ReleaseBlockFooter from './release_block_footer.vue';
import EvidenceBlock from './evidence_block.vue';
export default { export default {
name: 'ReleaseBlock', name: 'ReleaseBlock',
components: { components: {
EvidenceBlock,
GlLink, GlLink,
GlBadge, GlBadge,
GlButton, GlButton,
...@@ -70,6 +72,9 @@ export default { ...@@ -70,6 +72,9 @@ export default {
hasAuthor() { hasAuthor() {
return !_.isEmpty(this.author); return !_.isEmpty(this.author);
}, },
hasEvidence() {
return Boolean(this.release.evidence_sha);
},
shouldRenderMilestones() { shouldRenderMilestones() {
return !_.isEmpty(this.release.milestones); return !_.isEmpty(this.release.milestones);
}, },
...@@ -81,6 +86,9 @@ export default { ...@@ -81,6 +86,9 @@ export default {
this.glFeatures.releaseEditPage && this.release._links && this.release._links.edit_url, this.glFeatures.releaseEditPage && this.release._links && this.release._links.edit_url,
); );
}, },
shouldShowEvidence() {
return this.glFeatures.releaseEvidenceCollection;
},
shouldShowFooter() { shouldShowFooter() {
return this.glFeatures.releaseIssueSummary; return this.glFeatures.releaseIssueSummary;
}, },
...@@ -217,6 +225,8 @@ export default { ...@@ -217,6 +225,8 @@ export default {
</div> </div>
</div> </div>
<evidence-block v-if="hasEvidence && shouldShowEvidence" :release="release" />
<div class="card-text prepend-top-default"> <div class="card-text prepend-top-default">
<div v-html="release.description_html"></div> <div v-html="release.description_html"></div>
</div> </div>
......
<script> <script>
import { GlButton } from '@gitlab/ui';
import { __ } from '~/locale'; import { __ } from '~/locale';
import Icon from '~/vue_shared/components/icon.vue'; import Icon from '~/vue_shared/components/icon.vue';
...@@ -15,6 +16,7 @@ import Icon from '~/vue_shared/components/icon.vue'; ...@@ -15,6 +16,7 @@ import Icon from '~/vue_shared/components/icon.vue';
export default { export default {
name: 'ExpandButton', name: 'ExpandButton',
components: { components: {
GlButton,
Icon, Icon,
}, },
data() { data() {
...@@ -39,15 +41,25 @@ export default { ...@@ -39,15 +41,25 @@ export default {
</script> </script>
<template> <template>
<span> <span>
<button <gl-button
v-show="isCollapsed" v-show="isCollapsed"
:aria-label="ariaLabel" :aria-label="ariaLabel"
type="button" type="button"
class="text-expander btn-blank" class="js-text-expander-prepend text-expander btn-blank"
@click="onClick" @click="onClick"
> >
<icon :size="12" name="ellipsis_h" /> <icon :size="12" name="ellipsis_h" />
</button> </gl-button>
<span v-if="isCollapsed"> <slot name="short"></slot> </span>
<span v-if="!isCollapsed"> <slot name="expanded"></slot> </span> <span v-if="!isCollapsed"> <slot name="expanded"></slot> </span>
<gl-button
v-show="!isCollapsed"
:aria-label="ariaLabel"
type="button"
class="js-text-expander-append text-expander btn-blank"
@click="onClick"
>
<icon :size="12" name="ellipsis_h" />
</gl-button>
</span> </span>
</template> </template>
...@@ -274,12 +274,6 @@ ...@@ -274,12 +274,6 @@
height: 24px; height: 24px;
} }
.git-clone-holder {
.btn {
height: auto;
}
}
.dropdown-toggle, .dropdown-toggle,
.clone-dropdown-btn { .clone-dropdown-btn {
.fa { .fa {
......
...@@ -8,6 +8,7 @@ class Projects::ReleasesController < Projects::ApplicationController ...@@ -8,6 +8,7 @@ class Projects::ReleasesController < Projects::ApplicationController
before_action do before_action do
push_frontend_feature_flag(:release_edit_page, project, default_enabled: true) push_frontend_feature_flag(:release_edit_page, project, default_enabled: true)
push_frontend_feature_flag(:release_issue_summary, project) push_frontend_feature_flag(:release_issue_summary, project)
push_frontend_feature_flag(:release_evidence_collection, project)
end end
before_action :authorize_update_release!, only: %i[edit update] before_action :authorize_update_release!, only: %i[edit update]
......
...@@ -22,6 +22,8 @@ class Badge < ApplicationRecord ...@@ -22,6 +22,8 @@ class Badge < ApplicationRecord
scope :order_created_at_asc, -> { reorder(created_at: :asc) } scope :order_created_at_asc, -> { reorder(created_at: :asc) }
scope :with_name, ->(name) { where(name: name) }
validates :link_url, :image_url, addressable_url: true validates :link_url, :image_url, addressable_url: true
validates :type, presence: true validates :type, presence: true
......
---
title: Add evidence collection for Releases
merge_request: 18874
author:
type: changed
---
title: Add snowplow events for monitoring dashboard
merge_request: 19455
author:
type: added
---
title: Fix issue trying to edit weight with collapsed sidebar as guest
merge_request: 20431
author:
type: fixed
---
title: Add badge name field
merge_request: 16998
author: Lee Tickett
type: added
# frozen_string_literal: true
class AddNameToBadges < ActiveRecord::Migration[5.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :badges, :name, :string, null: true, limit: 255
end
end
...@@ -498,6 +498,7 @@ ActiveRecord::Schema.define(version: 2019_11_19_023952) do ...@@ -498,6 +498,7 @@ ActiveRecord::Schema.define(version: 2019_11_19_023952) do
t.integer "project_id" t.integer "project_id"
t.integer "group_id" t.integer "group_id"
t.string "type", null: false t.string "type", null: false
t.string "name", limit: 255
t.datetime_with_timezone "created_at", null: false t.datetime_with_timezone "created_at", null: false
t.datetime_with_timezone "updated_at", null: false t.datetime_with_timezone "updated_at", null: false
t.index ["group_id"], name: "index_badges_on_group_id" t.index ["group_id"], name: "index_badges_on_group_id"
......
...@@ -42,6 +42,7 @@ Have a look at some of our most popular documentation resources: ...@@ -42,6 +42,7 @@ Have a look at some of our most popular documentation resources:
| [Kubernetes integration](user/project/clusters/index.md) | Use GitLab with Kubernetes. | | [Kubernetes integration](user/project/clusters/index.md) | Use GitLab with Kubernetes. |
| [SSH authentication](ssh/README.md) | Secure your network communications. | | [SSH authentication](ssh/README.md) | Secure your network communications. |
| [Using Docker images](ci/docker/using_docker_images.md) | Build and test your applications with Docker. | | [Using Docker images](ci/docker/using_docker_images.md) | Build and test your applications with Docker. |
| [GraphQL](api/graphql/index.md) | Explore GitLab's GraphQL API. |
## The entire DevOps Lifecycle ## The entire DevOps Lifecycle
......
This diff is collapsed.
...@@ -4,6 +4,27 @@ ...@@ -4,6 +4,27 @@
> - [Always enabled](https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/30444) > - [Always enabled](https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/30444)
in GitLab 12.1. in GitLab 12.1.
## Getting Started
For those new to the GitLab GraphQL API, see
[Getting started with GitLab GraphQL API](getting_started.md).
### Quick Reference
- GitLab's GraphQL API endpoint is located at `/api/graphql`.
- Get an [introduction to GraphQL from graphql.org](https://graphql.org/).
- GitLab supports a wide range of resources, listed in the [GraphQL API Reference](reference/index.md).
#### GraphiQL
Explore the GraphQL API using the interactive [GraphiQL explorer](https://gitlab.com/-/graphql-explorer),
or on your self-managed GitLab instance on
`https://<your-gitlab-site.com>/-/graphql-explorer`.
See the [GitLab GraphQL overview](getting_started.md#graphiql) for more information about the GraphiQL Explorer.
## What is GraphQL?
[GraphQL](https://graphql.org/) is a query language for APIs that [GraphQL](https://graphql.org/) is a query language for APIs that
allows clients to request exactly the data they need, making it allows clients to request exactly the data they need, making it
possible to get all required data in a limited number of requests. possible to get all required data in a limited number of requests.
...@@ -33,11 +54,16 @@ possible. ...@@ -33,11 +54,16 @@ possible.
## Available queries ## Available queries
A first iteration of a GraphQL API includes the following queries The GraphQL API includes the following queries at the root level:
1. `project` : Within a project it is also possible to fetch a `mergeRequest` by IID. 1. `project` : Project information, with many of its associations such as issues and merge requests also available.
1. `group` : Basic group information and epics **(ULTIMATE)** are currently supported. 1. `group` : Basic group information and epics **(ULTIMATE)** are currently supported.
1. `namespace` : Within a namespace it is also possible to fetch `projects`. 1. `namespace` : Within a namespace it is also possible to fetch `projects`.
1. `currentUser`: Information about the currently logged in user.
1. `metaData`: Metadata about GitLab and the GraphQL API.
Root-level queries are defined in
[`app/graphql/types/query_type.rb`](https://gitlab.com/gitlab-org/gitlab/blob/master/app/graphql/types/query_type.rb).
### Multiplex queries ### Multiplex queries
...@@ -58,10 +84,5 @@ Machine-readable versions are also available: ...@@ -58,10 +84,5 @@ Machine-readable versions are also available:
- [JSON format](reference/gitlab_schema.json) - [JSON format](reference/gitlab_schema.json)
- [IDL format](reference/gitlab_schema.graphql) - [IDL format](reference/gitlab_schema.graphql)
## GraphiQL
The API can be explored by using the GraphiQL IDE, it is available on your
instance on `gitlab.example.com/-/graphql-explorer`.
[ce-19008]: https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/19008 [ce-19008]: https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/19008
[features-api]: ../features.md [features-api]: ../features.md
...@@ -26,9 +26,10 @@ GET /groups/:id/badges ...@@ -26,9 +26,10 @@ GET /groups/:id/badges
| Attribute | Type | Required | Description | | Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- | | --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the group](README.md#namespaced-path-encoding) owned by the authenticated user | | `id` | integer/string | yes | The ID or [URL-encoded path of the group](README.md#namespaced-path-encoding) owned by the authenticated user |
| `name` | string | no | Name of the badges to return (case-sensitive). |
```bash ```bash
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/groups/:id/badges curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/groups/:id/badges?name=Coverage
``` ```
Example response: Example response:
...@@ -36,21 +37,14 @@ Example response: ...@@ -36,21 +37,14 @@ Example response:
```json ```json
[ [
{ {
"name": "Coverage",
"id": 1, "id": 1,
"link_url": "http://example.com/ci_status.svg?project=%{project_path}&ref=%{default_branch}", "link_url": "http://example.com/ci_status.svg?project=%{project_path}&ref=%{default_branch}",
"image_url": "https://shields.io/my/badge", "image_url": "https://shields.io/my/badge",
"rendered_link_url": "http://example.com/ci_status.svg?project=example-org/example-project&ref=master", "rendered_link_url": "http://example.com/ci_status.svg?project=example-org/example-project&ref=master",
"rendered_image_url": "https://shields.io/my/badge", "rendered_image_url": "https://shields.io/my/badge",
"kind": "group" "kind": "group"
}, }
{
"id": 2,
"link_url": "http://example.com/ci_status.svg?project=%{project_path}&ref=%{default_branch}",
"image_url": "https://shields.io/my/badge",
"rendered_link_url": "http://example.com/ci_status.svg?project=example-org/example-project&ref=master",
"rendered_image_url": "https://shields.io/my/badge",
"kind": "group"
},
] ]
``` ```
......
...@@ -23,6 +23,7 @@ GET /projects/:id/badges ...@@ -23,6 +23,7 @@ GET /projects/:id/badges
| Attribute | Type | Required | Description | | Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- | | --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user | | `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user |
| `name` | string | no | Name of the badges to return (case-sensitive). |
```bash ```bash
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/:id/badges curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/:id/badges
...@@ -33,6 +34,7 @@ Example response: ...@@ -33,6 +34,7 @@ Example response:
```json ```json
[ [
{ {
"name": "Coverage",
"id": 1, "id": 1,
"link_url": "http://example.com/ci_status.svg?project=%{project_path}&ref=%{default_branch}", "link_url": "http://example.com/ci_status.svg?project=%{project_path}&ref=%{default_branch}",
"image_url": "https://shields.io/my/badge", "image_url": "https://shields.io/my/badge",
...@@ -41,6 +43,7 @@ Example response: ...@@ -41,6 +43,7 @@ Example response:
"kind": "project" "kind": "project"
}, },
{ {
"name": "Pipeline",
"id": 2, "id": 2,
"link_url": "http://example.com/ci_status.svg?project=%{project_path}&ref=%{default_branch}", "link_url": "http://example.com/ci_status.svg?project=%{project_path}&ref=%{default_branch}",
"image_url": "https://shields.io/my/badge", "image_url": "https://shields.io/my/badge",
......
...@@ -33,7 +33,11 @@ module API ...@@ -33,7 +33,11 @@ module API
get ":id/badges" do get ":id/badges" do
source = find_source(source_type, params[:id]) source = find_source(source_type, params[:id])
present_badges(source, paginate(source.badges)) badges = source.badges
name = params[:name]
badges = badges.with_name(name) if name
present_badges(source, paginate(badges))
end end
desc "Preview a badge from a #{source_type}." do desc "Preview a badge from a #{source_type}." do
...@@ -80,6 +84,7 @@ module API ...@@ -80,6 +84,7 @@ module API
params do params do
requires :link_url, type: String, desc: 'URL of the badge link' requires :link_url, type: String, desc: 'URL of the badge link'
requires :image_url, type: String, desc: 'URL of the badge image' requires :image_url, type: String, desc: 'URL of the badge image'
optional :name, type: String, desc: 'Name for the badge'
end end
post ":id/badges" do post ":id/badges" do
source = find_source_if_admin(source_type) source = find_source_if_admin(source_type)
...@@ -100,6 +105,7 @@ module API ...@@ -100,6 +105,7 @@ module API
params do params do
optional :link_url, type: String, desc: 'URL of the badge link' optional :link_url, type: String, desc: 'URL of the badge link'
optional :image_url, type: String, desc: 'URL of the badge image' optional :image_url, type: String, desc: 'URL of the badge image'
optional :name, type: String, desc: 'Name for the badge'
end end
put ":id/badges/:badge_id" do put ":id/badges/:badge_id" do
source = find_source_if_admin(source_type) source = find_source_if_admin(source_type)
......
...@@ -1736,6 +1736,7 @@ module API ...@@ -1736,6 +1736,7 @@ module API
end end
class BasicBadgeDetails < Grape::Entity class BasicBadgeDetails < Grape::Entity
expose :name
expose :link_url expose :link_url
expose :image_url expose :image_url
expose :rendered_link_url do |badge, options| expose :rendered_link_url do |badge, options|
......
...@@ -374,6 +374,9 @@ msgstr[1] "" ...@@ -374,6 +374,9 @@ msgstr[1] ""
msgid "%{tabname} changed" msgid "%{tabname} changed"
msgstr "" msgstr ""
msgid "%{tag}-evidence.json"
msgstr ""
msgid "%{template_project_id} is unknown or invalid" msgid "%{template_project_id} is unknown or invalid"
msgstr "" msgstr ""
...@@ -1780,6 +1783,15 @@ msgstr "" ...@@ -1780,6 +1783,15 @@ msgstr ""
msgid "Analytics" msgid "Analytics"
msgstr "" msgstr ""
msgid "Analyze a review version of your web application."
msgstr ""
msgid "Analyze your dependencies for known vulnerabilities"
msgstr ""
msgid "Analyze your source code for known vulnerabilities"
msgstr ""
msgid "Ancestors" msgid "Ancestors"
msgstr "" msgstr ""
...@@ -2383,6 +2395,9 @@ msgstr "" ...@@ -2383,6 +2395,9 @@ msgstr ""
msgid "Badges|Link" msgid "Badges|Link"
msgstr "" msgstr ""
msgid "Badges|Name"
msgstr ""
msgid "Badges|No badge image" msgid "Badges|No badge image"
msgstr "" msgstr ""
...@@ -3112,6 +3127,9 @@ msgstr "" ...@@ -3112,6 +3127,9 @@ msgstr ""
msgid "Check your .gitlab-ci.yml" msgid "Check your .gitlab-ci.yml"
msgstr "" msgstr ""
msgid "Check your Docker images for known vulnerabilities"
msgstr ""
msgid "Checking %{text} availability…" msgid "Checking %{text} availability…"
msgstr "" msgstr ""
...@@ -4551,6 +4569,9 @@ msgstr "" ...@@ -4551,6 +4569,9 @@ msgstr ""
msgid "Container Registry" msgid "Container Registry"
msgstr "" msgstr ""
msgid "Container Scanning"
msgstr ""
msgid "Container registry images" msgid "Container registry images"
msgstr "" msgstr ""
...@@ -5527,6 +5548,9 @@ msgstr "" ...@@ -5527,6 +5548,9 @@ msgstr ""
msgid "Dependency Proxy" msgid "Dependency Proxy"
msgstr "" msgstr ""
msgid "Dependency Scanning"
msgstr ""
msgid "Dependency proxy" msgid "Dependency proxy"
msgstr "" msgstr ""
...@@ -6028,6 +6052,9 @@ msgstr "" ...@@ -6028,6 +6052,9 @@ msgstr ""
msgid "Download codes" msgid "Download codes"
msgstr "" msgstr ""
msgid "Download evidence JSON"
msgstr ""
msgid "Download export" msgid "Download export"
msgstr "" msgstr ""
...@@ -6067,6 +6094,9 @@ msgstr "" ...@@ -6067,6 +6094,9 @@ msgstr ""
msgid "During this process, you’ll be asked for URLs from GitLab’s side. Use the URLs shown below." msgid "During this process, you’ll be asked for URLs from GitLab’s side. Use the URLs shown below."
msgstr "" msgstr ""
msgid "Dynamic Application Security Testing (DAST)"
msgstr ""
msgid "Each Runner can be in one of the following states:" msgid "Each Runner can be in one of the following states:"
msgstr "" msgstr ""
...@@ -6949,6 +6979,9 @@ msgstr "" ...@@ -6949,6 +6979,9 @@ msgstr ""
msgid "Everything you need to create a GitLab Pages site using plain HTML." msgid "Everything you need to create a GitLab Pages site using plain HTML."
msgstr "" msgstr ""
msgid "Evidence collection"
msgstr ""
msgid "Example: @sub\\.company\\.com$" msgid "Example: @sub\\.company\\.com$"
msgstr "" msgstr ""
...@@ -15038,6 +15071,9 @@ msgstr "" ...@@ -15038,6 +15071,9 @@ msgstr ""
msgid "Search users or groups" msgid "Search users or groups"
msgstr "" msgstr ""
msgid "Search your project dependencies for their licenses and apply policies"
msgstr ""
msgid "Search your projects" msgid "Search your projects"
msgstr "" msgstr ""
...@@ -15156,6 +15192,9 @@ msgstr "" ...@@ -15156,6 +15192,9 @@ msgstr ""
msgid "Security & Compliance" msgid "Security & Compliance"
msgstr "" msgstr ""
msgid "Security Configuration"
msgstr ""
msgid "Security Dashboard" msgid "Security Dashboard"
msgstr "" msgstr ""
...@@ -15291,7 +15330,7 @@ msgstr "" ...@@ -15291,7 +15330,7 @@ msgstr ""
msgid "SecurityDashboard|More information" msgid "SecurityDashboard|More information"
msgstr "" msgstr ""
msgid "SecurityDashboard|Pipeline %{pipelineLink} triggered" msgid "SecurityDashboard|Pipeline %{pipelineLink} triggered %{timeago} by %{user}"
msgstr "" msgstr ""
msgid "SecurityDashboard|Project" msgid "SecurityDashboard|Project"
...@@ -16499,6 +16538,9 @@ msgstr "" ...@@ -16499,6 +16538,9 @@ msgstr ""
msgid "State your message to activate" msgid "State your message to activate"
msgstr "" msgstr ""
msgid "Static Application Security Testing (SAST)"
msgstr ""
msgid "Statistics" msgid "Statistics"
msgstr "" msgstr ""
......
import MockAdapter from 'axios-mock-adapter'; import MockAdapter from 'axios-mock-adapter';
import Tracking from '~/tracking';
import { TEST_HOST } from 'helpers/test_constants'; import { TEST_HOST } from 'helpers/test_constants';
import testAction from 'helpers/vuex_action_helper'; import testAction from 'helpers/vuex_action_helper';
import axios from '~/lib/utils/axios_utils'; import axios from '~/lib/utils/axios_utils';
...@@ -226,12 +227,14 @@ describe('Monitoring store actions', () => { ...@@ -226,12 +227,14 @@ describe('Monitoring store actions', () => {
let state; let state;
const response = metricsDashboardResponse; const response = metricsDashboardResponse;
beforeEach(() => { beforeEach(() => {
jest.spyOn(Tracking, 'event');
dispatch = jest.fn(); dispatch = jest.fn();
state = storeState(); state = storeState();
state.dashboardEndpoint = '/dashboard'; state.dashboardEndpoint = '/dashboard';
}); });
it('dispatches receive and success actions', done => { it('dispatches receive and success actions', done => {
const params = {}; const params = {};
document.body.dataset.page = 'projects:environments:metrics';
mock.onGet(state.dashboardEndpoint).reply(200, response); mock.onGet(state.dashboardEndpoint).reply(200, response);
fetchDashboard( fetchDashboard(
{ {
...@@ -246,6 +249,17 @@ describe('Monitoring store actions', () => { ...@@ -246,6 +249,17 @@ describe('Monitoring store actions', () => {
response, response,
params, params,
}); });
})
.then(() => {
expect(Tracking.event).toHaveBeenCalledWith(
document.body.dataset.page,
'dashboard_fetch',
{
label: 'custom_metrics_dashboard',
property: 'count',
value: 0,
},
);
done(); done();
}) })
.catch(done.fail); .catch(done.fail);
......
import { mount, createLocalVue } from '@vue/test-utils';
import { GlLink } from '@gitlab/ui';
import { truncateSha } from '~/lib/utils/text_utility';
import Icon from '~/vue_shared/components/icon.vue';
import { release } from '../../mock_data';
import EvidenceBlock from '~/releases/list/components/evidence_block.vue';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
describe('Evidence Block', () => {
let wrapper;
const factory = (options = {}) => {
const localVue = createLocalVue();
wrapper = mount(localVue.extend(EvidenceBlock), {
localVue,
...options,
});
};
beforeEach(() => {
factory({
propsData: {
release,
},
});
});
afterEach(() => {
wrapper.destroy();
});
it('renders the evidence icon', () => {
expect(wrapper.find(Icon).props('name')).toBe('review-list');
});
it('renders the title for the dowload link', () => {
expect(wrapper.find(GlLink).text()).toBe(`${release.tag_name}-evidence.json`);
});
it('renders the correct hover text for the download', () => {
expect(wrapper.find(GlLink).attributes('data-original-title')).toBe('Download evidence JSON');
});
it('renders the correct file link for download', () => {
expect(wrapper.find(GlLink).attributes().download).toBe(`${release.tag_name}-evidence.json`);
});
describe('sha text', () => {
it('renders the short sha initially', () => {
expect(wrapper.find('.js-short').text()).toBe(truncateSha(release.evidence_sha));
});
it('renders the long sha after expansion', () => {
wrapper.find('.js-text-expander-prepend').trigger('click');
expect(wrapper.find('.js-expanded').text()).toBe(release.evidence_sha);
});
});
describe('copy to clipboard button', () => {
it('renders button', () => {
expect(wrapper.find(ClipboardButton).exists()).toBe(true);
});
it('renders the correct hover text', () => {
expect(wrapper.find(ClipboardButton).attributes('data-original-title')).toBe(
'Copy commit SHA',
);
});
it('copies the sha', () => {
expect(wrapper.find(ClipboardButton).attributes('data-clipboard-text')).toBe(
release.evidence_sha,
);
});
});
});
import { mount } from '@vue/test-utils'; import { mount } from '@vue/test-utils';
import EvidenceBlock from '~/releases/list/components/evidence_block.vue';
import ReleaseBlock from '~/releases/list/components/release_block.vue'; import ReleaseBlock from '~/releases/list/components/release_block.vue';
import ReleaseBlockFooter from '~/releases/list/components/release_block_footer.vue'; import ReleaseBlockFooter from '~/releases/list/components/release_block_footer.vue';
import timeagoMixin from '~/vue_shared/mixins/timeago'; import timeagoMixin from '~/vue_shared/mixins/timeago';
...@@ -220,6 +221,26 @@ describe('Release block', () => { ...@@ -220,6 +221,26 @@ describe('Release block', () => {
}); });
}); });
describe('evidence block', () => {
it('renders the evidence block when the evidence is available and the feature flag is true', () =>
factory(releaseClone, { releaseEvidenceCollection: true }).then(() =>
expect(wrapper.find(EvidenceBlock).exists()).toBe(true),
));
it('does not render the evidence block when the evidence is available but the feature flag is false', () =>
factory(releaseClone, { releaseEvidenceCollection: true }).then(() =>
expect(wrapper.find(EvidenceBlock).exists()).toBe(true),
));
it('does not render the evidence block when there is no evidence', () => {
releaseClone.evidence_sha = null;
return factory(releaseClone).then(() => {
expect(wrapper.find(EvidenceBlock).exists()).toBe(false);
});
});
});
describe('anchor scrolling', () => { describe('anchor scrolling', () => {
beforeEach(() => { beforeEach(() => {
scrollToElement.mockClear(); scrollToElement.mockClear();
......
...@@ -35,6 +35,7 @@ export const release = { ...@@ -35,6 +35,7 @@ export const release = {
description_html: '<p data-sourcepos="1:1-1:21" dir="auto">A super nice release!</p>', description_html: '<p data-sourcepos="1:1-1:21" dir="auto">A super nice release!</p>',
created_at: '2019-08-26T17:54:04.952Z', created_at: '2019-08-26T17:54:04.952Z',
released_at: '2019-08-26T17:54:04.807Z', released_at: '2019-08-26T17:54:04.807Z',
evidence_sha: 'fb3a125fd69a0e5048ebfb0ba43eb32ce4911520dd8d',
author: { author: {
id: 1, id: 1,
name: 'Administrator', name: 'Administrator',
...@@ -62,6 +63,8 @@ export const release = { ...@@ -62,6 +63,8 @@ export const release = {
milestones, milestones,
assets: { assets: {
count: 5, count: 5,
evidence_file_path:
'https://20592.qa-tunnel.gitlab.info/root/test-deployments/-/releases/v1.1.2/evidence.json',
sources: [ sources: [
{ {
format: 'zip', format: 'zip',
......
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Expand button on click when short text is provided renders button after text 1`] = `"<span><button aria-label=\\"Click to expand text\\" type=\\"button\\" class=\\"btn js-text-expander-prepend text-expander btn-blank btn-secondary\\" style=\\"display: none;\\"><svg aria-hidden=\\"true\\" class=\\"s12 ic-ellipsis_h\\"><use xlink:href=\\"#ellipsis_h\\"></use></svg></button> <!----> <span><p>Expanded!</p></span> <button aria-label=\\"Click to expand text\\" type=\\"button\\" class=\\"btn js-text-expander-append text-expander btn-blank btn-secondary\\" style=\\"\\"><svg aria-hidden=\\"true\\" class=\\"s12 ic-ellipsis_h\\"><use xlink:href=\\"#ellipsis_h\\"></use></svg></button></span>"`;
exports[`Expand button when short text is provided renders button before text 1`] = `"<span><button aria-label=\\"Click to expand text\\" type=\\"button\\" class=\\"btn js-text-expander-prepend text-expander btn-blank btn-secondary\\"><svg aria-hidden=\\"true\\" class=\\"s12 ic-ellipsis_h\\"><use xlink:href=\\"#ellipsis_h\\"></use></svg></button> <span><p>Short</p></span> <!----> <button aria-label=\\"Click to expand text\\" type=\\"button\\" class=\\"btn js-text-expander-append text-expander btn-blank btn-secondary\\" style=\\"display: none;\\"><svg aria-hidden=\\"true\\" class=\\"s12 ic-ellipsis_h\\"><use xlink:href=\\"#ellipsis_h\\"></use></svg></button></span>"`;
...@@ -19,6 +19,7 @@ describe('Changed file icon', () => { ...@@ -19,6 +19,7 @@ describe('Changed file icon', () => {
...props, ...props,
}, },
sync: false, sync: false,
attachToDocument: true,
}); });
}; };
......
...@@ -13,6 +13,7 @@ describe('Commit component', () => { ...@@ -13,6 +13,7 @@ describe('Commit component', () => {
wrapper = shallowMount(CommitComponent, { wrapper = shallowMount(CommitComponent, {
propsData, propsData,
sync: false, sync: false,
attachToDocument: true,
}); });
}; };
......
import Vue from 'vue';
import { mount, createLocalVue } from '@vue/test-utils';
import ExpandButton from '~/vue_shared/components/expand_button.vue';
const text = {
expanded: 'Expanded!',
short: 'Short',
};
describe('Expand button', () => {
let wrapper;
const expanderPrependEl = () => wrapper.find('.js-text-expander-prepend');
const expanderAppendEl = () => wrapper.find('.js-text-expander-append');
const factory = (options = {}) => {
const localVue = createLocalVue();
wrapper = mount(localVue.extend(ExpandButton), {
localVue,
...options,
});
};
beforeEach(() => {
factory({
slots: {
expanded: `<p>${text.expanded}</p>`,
},
});
});
afterEach(() => {
wrapper.destroy();
});
it('renders the prepended collapse button', () => {
expect(expanderPrependEl().isVisible()).toBe(true);
expect(expanderAppendEl().isVisible()).toBe(false);
});
it('renders no text when short text is not provided', () => {
expect(wrapper.find(ExpandButton).text()).toBe('');
});
it('does not render expanded text', () => {
expect(
wrapper
.find(ExpandButton)
.text()
.trim(),
).not.toBe(text.short);
});
describe('when short text is provided', () => {
beforeEach(() => {
factory({
slots: {
expanded: `<p>${text.expanded}</p>`,
short: `<p>${text.short}</p>`,
},
});
});
it('renders short text', () => {
expect(
wrapper
.find(ExpandButton)
.text()
.trim(),
).toBe(text.short);
});
it('renders button before text', () => {
expect(expanderPrependEl().isVisible()).toBe(true);
expect(expanderAppendEl().isVisible()).toBe(false);
expect(wrapper.find(ExpandButton).html()).toMatchSnapshot();
});
});
describe('on click', () => {
beforeEach(done => {
expanderPrependEl().trigger('click');
Vue.nextTick(done);
});
afterEach(() => {
expanderAppendEl().trigger('click');
});
it('renders only the append collapse button', () => {
expect(expanderAppendEl().isVisible()).toBe(true);
expect(expanderPrependEl().isVisible()).toBe(false);
});
it('renders the expanded text', () => {
expect(wrapper.find(ExpandButton).text()).toContain(text.expanded);
});
describe('when short text is provided', () => {
beforeEach(done => {
factory({
slots: {
expanded: `<p>${text.expanded}</p>`,
short: `<p>${text.short}</p>`,
},
});
expanderPrependEl().trigger('click');
Vue.nextTick(done);
});
it('only renders expanded text', () => {
expect(
wrapper
.find(ExpandButton)
.text()
.trim(),
).toBe(text.expanded);
});
it('renders button after text', () => {
expect(expanderPrependEl().isVisible()).toBe(false);
expect(expanderAppendEl().isVisible()).toBe(true);
expect(wrapper.find(ExpandButton).html()).toMatchSnapshot();
});
});
});
describe('append button', () => {
beforeEach(done => {
expanderPrependEl().trigger('click');
Vue.nextTick(done);
});
it('clicking hides itself and shows prepend', () => {
expect(expanderAppendEl().isVisible()).toBe(true);
expanderAppendEl().trigger('click');
expect(expanderPrependEl().isVisible()).toBe(true);
});
it('clicking hides expanded text', () => {
expect(
wrapper
.find(ExpandButton)
.text()
.trim(),
).toBe(text.expanded);
expanderAppendEl().trigger('click');
expect(
wrapper
.find(ExpandButton)
.text()
.trim(),
).not.toBe(text.expanded);
});
describe('when short text is provided', () => {
beforeEach(done => {
factory({
slots: {
expanded: `<p>${text.expanded}</p>`,
short: `<p>${text.short}</p>`,
},
});
expanderPrependEl().trigger('click');
Vue.nextTick(done);
});
it('clicking reveals short text', () => {
expect(
wrapper
.find(ExpandButton)
.text()
.trim(),
).toBe(text.expanded);
expanderAppendEl().trigger('click');
expect(
wrapper
.find(ExpandButton)
.text()
.trim(),
).toBe(text.short);
});
});
});
});
...@@ -18,6 +18,7 @@ describe('IssueAssigneesComponent', () => { ...@@ -18,6 +18,7 @@ describe('IssueAssigneesComponent', () => {
...props, ...props,
}, },
sync: false, sync: false,
attachToDocument: true,
}); });
vm = wrapper.vm; // eslint-disable-line vm = wrapper.vm; // eslint-disable-line
}; };
......
import Vue from 'vue'; import Vue from 'vue';
import { mount } from '@vue/test-utils'; import { shallowMount } from '@vue/test-utils';
import IssueMilestone from '~/vue_shared/components/issue/issue_milestone.vue'; import IssueMilestone from '~/vue_shared/components/issue/issue_milestone.vue';
import Icon from '~/vue_shared/components/icon.vue';
import { mockMilestone } from '../../../../javascripts/boards/mock_data'; import { mockMilestone } from '../../../../javascripts/boards/mock_data';
const createComponent = (milestone = mockMilestone) => { const createComponent = (milestone = mockMilestone) => {
const Component = Vue.extend(IssueMilestone); const Component = Vue.extend(IssueMilestone);
return mount(Component, { return shallowMount(Component, {
propsData: { propsData: {
milestone, milestone,
}, },
sync: false, sync: false,
attachToDocument: true,
}); });
}; };
...@@ -156,7 +158,7 @@ describe('IssueMilestoneComponent', () => { ...@@ -156,7 +158,7 @@ describe('IssueMilestoneComponent', () => {
}); });
it('renders milestone icon', () => { it('renders milestone icon', () => {
expect(vm.$el.querySelector('svg use').getAttribute('xlink:href')).toContain('clock'); expect(wrapper.find(Icon).props('name')).toBe('clock');
}); });
it('renders milestone title', () => { it('renders milestone title', () => {
......
...@@ -35,6 +35,7 @@ describe('RelatedIssuableItem', () => { ...@@ -35,6 +35,7 @@ describe('RelatedIssuableItem', () => {
localVue, localVue,
slots, slots,
sync: false, sync: false,
attachToDocument: true,
propsData: props, propsData: props,
}); });
}); });
......
...@@ -21,6 +21,7 @@ describe('Suggestion Diff component', () => { ...@@ -21,6 +21,7 @@ describe('Suggestion Diff component', () => {
}, },
localVue, localVue,
sync: false, sync: false,
attachToDocument: true,
}); });
}; };
......
...@@ -16,6 +16,8 @@ describe('modal copy button', () => { ...@@ -16,6 +16,8 @@ describe('modal copy button', () => {
text: 'copy me', text: 'copy me',
title: 'Copy this value', title: 'Copy this value',
}, },
attachToDocument: true,
sync: false,
}); });
}); });
......
...@@ -26,6 +26,8 @@ describe('Pagination links component', () => { ...@@ -26,6 +26,8 @@ describe('Pagination links component', () => {
list: [{ id: 'foo' }, { id: 'bar' }], list: [{ id: 'foo' }, { id: 'bar' }],
props, props,
}, },
attachToDocument: true,
sync: false,
}); });
[glPaginatedList] = wrapper.vm.$children; [glPaginatedList] = wrapper.vm.$children;
......
import Vue from 'vue'; import Vue from 'vue';
import LabelsSelect from '~/labels_select'; import LabelsSelect from '~/labels_select';
import baseComponent from '~/vue_shared/components/sidebar/labels_select/base.vue'; import BaseComponent from '~/vue_shared/components/sidebar/labels_select/base.vue';
import { mount } from '@vue/test-utils'; import { shallowMount } from '@vue/test-utils';
import { import {
mockConfig, mockConfig,
mockLabels, mockLabels,
} from '../../../../../javascripts/vue_shared/components/sidebar/labels_select/mock_data'; } from '../../../../../javascripts/vue_shared/components/sidebar/labels_select/mock_data';
const createComponent = (config = mockConfig) => { const createComponent = (config = mockConfig) =>
const Component = Vue.extend(baseComponent); shallowMount(BaseComponent, {
return mount(Component, {
propsData: config, propsData: config,
sync: false, sync: false,
attachToDocument: true,
}); });
};
describe('BaseComponent', () => { describe('BaseComponent', () => {
let wrapper; let wrapper;
......
...@@ -51,13 +51,14 @@ describe('BadgeForm component', () => { ...@@ -51,13 +51,14 @@ describe('BadgeForm component', () => {
}); });
const sharedSubmitTests = submitAction => { const sharedSubmitTests = submitAction => {
const nameSelector = '#badge-name';
const imageUrlSelector = '#badge-image-url'; const imageUrlSelector = '#badge-image-url';
const findImageUrlElement = () => vm.$el.querySelector(imageUrlSelector); const findImageUrlElement = () => vm.$el.querySelector(imageUrlSelector);
const linkUrlSelector = '#badge-link-url'; const linkUrlSelector = '#badge-link-url';
const findLinkUrlElement = () => vm.$el.querySelector(linkUrlSelector); const findLinkUrlElement = () => vm.$el.querySelector(linkUrlSelector);
const setValue = (inputElementSelector, url) => { const setValue = (inputElementSelector, value) => {
const inputElement = vm.$el.querySelector(inputElementSelector); const inputElement = vm.$el.querySelector(inputElementSelector);
inputElement.value = url; inputElement.value = value;
inputElement.dispatchEvent(new Event('input')); inputElement.dispatchEvent(new Event('input'));
}; };
const submitForm = () => { const submitForm = () => {
...@@ -82,6 +83,7 @@ describe('BadgeForm component', () => { ...@@ -82,6 +83,7 @@ describe('BadgeForm component', () => {
isSaving: false, isSaving: false,
}); });
setValue(nameSelector, 'TestBadge');
setValue(linkUrlSelector, `${TEST_HOST}/link/url`); setValue(linkUrlSelector, `${TEST_HOST}/link/url`);
setValue(imageUrlSelector, `${window.location.origin}${DUMMY_IMAGE_URL}`); setValue(imageUrlSelector, `${window.location.origin}${DUMMY_IMAGE_URL}`);
}); });
......
...@@ -39,6 +39,10 @@ describe('BadgeListRow component', () => { ...@@ -39,6 +39,10 @@ describe('BadgeListRow component', () => {
expect(badgeElement.getAttribute('src')).toBe(badge.renderedImageUrl); expect(badgeElement.getAttribute('src')).toBe(badge.renderedImageUrl);
}); });
it('renders the badge name', () => {
expect(vm.$el).toContainText(badge.name);
});
it('renders the badge link', () => { it('renders the badge link', () => {
expect(vm.$el).toContainText(badge.linkUrl); expect(vm.$el).toContainText(badge.linkUrl);
}); });
......
...@@ -6,6 +6,7 @@ export const createDummyBadge = () => { ...@@ -6,6 +6,7 @@ export const createDummyBadge = () => {
const id = _.uniqueId(); const id = _.uniqueId();
return { return {
id, id,
name: 'TestBadge',
imageUrl: `${TEST_HOST}/badges/${id}/image/url`, imageUrl: `${TEST_HOST}/badges/${id}/image/url`,
isDeleting: false, isDeleting: false,
linkUrl: `${TEST_HOST}/badges/${id}/link/url`, linkUrl: `${TEST_HOST}/badges/${id}/link/url`,
...@@ -16,6 +17,7 @@ export const createDummyBadge = () => { ...@@ -16,6 +17,7 @@ export const createDummyBadge = () => {
}; };
export const createDummyBadgeResponse = () => ({ export const createDummyBadgeResponse = () => ({
name: 'TestBadge',
image_url: `${TEST_HOST}/badge/image/url`, image_url: `${TEST_HOST}/badge/image/url`,
link_url: `${TEST_HOST}/badge/link/url`, link_url: `${TEST_HOST}/badge/link/url`,
kind: PROJECT_BADGE, kind: PROJECT_BADGE,
......
...@@ -90,6 +90,7 @@ describe('Badges store actions', () => { ...@@ -90,6 +90,7 @@ describe('Badges store actions', () => {
endpointMock.replyOnce(req => { endpointMock.replyOnce(req => {
expect(req.data).toBe( expect(req.data).toBe(
JSON.stringify({ JSON.stringify({
name: 'TestBadge',
image_url: badgeInAddForm.imageUrl, image_url: badgeInAddForm.imageUrl,
link_url: badgeInAddForm.linkUrl, link_url: badgeInAddForm.linkUrl,
}), }),
...@@ -114,6 +115,7 @@ describe('Badges store actions', () => { ...@@ -114,6 +115,7 @@ describe('Badges store actions', () => {
endpointMock.replyOnce(req => { endpointMock.replyOnce(req => {
expect(req.data).toBe( expect(req.data).toBe(
JSON.stringify({ JSON.stringify({
name: 'TestBadge',
image_url: badgeInAddForm.imageUrl, image_url: badgeInAddForm.imageUrl,
link_url: badgeInAddForm.linkUrl, link_url: badgeInAddForm.linkUrl,
}), }),
...@@ -526,6 +528,7 @@ describe('Badges store actions', () => { ...@@ -526,6 +528,7 @@ describe('Badges store actions', () => {
endpointMock.replyOnce(req => { endpointMock.replyOnce(req => {
expect(req.data).toBe( expect(req.data).toBe(
JSON.stringify({ JSON.stringify({
name: 'TestBadge',
image_url: badgeInEditForm.imageUrl, image_url: badgeInEditForm.imageUrl,
link_url: badgeInEditForm.linkUrl, link_url: badgeInEditForm.linkUrl,
}), }),
...@@ -550,6 +553,7 @@ describe('Badges store actions', () => { ...@@ -550,6 +553,7 @@ describe('Badges store actions', () => {
endpointMock.replyOnce(req => { endpointMock.replyOnce(req => {
expect(req.data).toBe( expect(req.data).toBe(
JSON.stringify({ JSON.stringify({
name: 'TestBadge',
image_url: badgeInEditForm.imageUrl, image_url: badgeInEditForm.imageUrl,
link_url: badgeInEditForm.linkUrl, link_url: badgeInEditForm.linkUrl,
}), }),
......
import Vue from 'vue';
import expandButton from '~/vue_shared/components/expand_button.vue';
import mountComponent from 'spec/helpers/vue_mount_component_helper';
describe('expand button', () => {
const Component = Vue.extend(expandButton);
let vm;
beforeEach(() => {
vm = mountComponent(Component, {
slots: {
expanded: '<p>Expanded!</p>',
},
});
});
afterEach(() => {
vm.$destroy();
});
it('renders a collapsed button', () => {
expect(vm.$children[0].iconTestClass).toEqual('ic-ellipsis_h');
});
it('hides expander on click', done => {
vm.$el.querySelector('button').click();
vm.$nextTick(() => {
expect(vm.$el.querySelector('button').getAttribute('style')).toEqual('display: none;');
done();
});
});
});
...@@ -651,6 +651,7 @@ PrometheusAlert: ...@@ -651,6 +651,7 @@ PrometheusAlert:
- prometheus_metric_id - prometheus_metric_id
Badge: Badge:
- id - id
- name
- link_url - link_url
- image_url - image_url
- project_id - project_id
......
...@@ -81,6 +81,7 @@ describe API::Badges do ...@@ -81,6 +81,7 @@ describe API::Badges do
get api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", user) get api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", user)
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(200)
expect(json_response['name']).to eq(badge.name)
expect(json_response['id']).to eq(badge.id) expect(json_response['id']).to eq(badge.id)
expect(json_response['link_url']).to eq(badge.link_url) expect(json_response['link_url']).to eq(badge.link_url)
expect(json_response['rendered_link_url']).to eq(badge.rendered_link_url) expect(json_response['rendered_link_url']).to eq(badge.rendered_link_url)
...@@ -98,6 +99,7 @@ describe API::Badges do ...@@ -98,6 +99,7 @@ describe API::Badges do
include_context 'source helpers' include_context 'source helpers'
let(:source) { get_source(source_type) } let(:source) { get_source(source_type) }
let(:example_name) { 'BadgeName' }
let(:example_url) { 'http://www.example.com' } let(:example_url) { 'http://www.example.com' }
let(:example_url2) { 'http://www.example1.com' } let(:example_url2) { 'http://www.example1.com' }
...@@ -105,7 +107,7 @@ describe API::Badges do ...@@ -105,7 +107,7 @@ describe API::Badges do
it_behaves_like 'a 404 response when source is private' do it_behaves_like 'a 404 response when source is private' do
let(:route) do let(:route) do
post api("/#{source_type.pluralize}/#{source.id}/badges", stranger), post api("/#{source_type.pluralize}/#{source.id}/badges", stranger),
params: { link_url: example_url, image_url: example_url2 } params: { name: example_name, link_url: example_url, image_url: example_url2 }
end end
end end
...@@ -128,11 +130,12 @@ describe API::Badges do ...@@ -128,11 +130,12 @@ describe API::Badges do
it 'creates a new badge' do it 'creates a new badge' do
expect do expect do
post api("/#{source_type.pluralize}/#{source.id}/badges", maintainer), post api("/#{source_type.pluralize}/#{source.id}/badges", maintainer),
params: { link_url: example_url, image_url: example_url2 } params: { name: example_name, link_url: example_url, image_url: example_url2 }
expect(response).to have_gitlab_http_status(201) expect(response).to have_gitlab_http_status(201)
end.to change { source.badges.count }.by(1) end.to change { source.badges.count }.by(1)
expect(json_response['name']).to eq(example_name)
expect(json_response['link_url']).to eq(example_url) expect(json_response['link_url']).to eq(example_url)
expect(json_response['image_url']).to eq(example_url2) expect(json_response['image_url']).to eq(example_url2)
expect(json_response['kind']).to eq source_type expect(json_response['kind']).to eq source_type
...@@ -169,6 +172,7 @@ describe API::Badges do ...@@ -169,6 +172,7 @@ describe API::Badges do
context "with :sources == #{source_type.pluralize}" do context "with :sources == #{source_type.pluralize}" do
let(:badge) { source.badges.first } let(:badge) { source.badges.first }
let(:example_name) { 'BadgeName' }
let(:example_url) { 'http://www.example.com' } let(:example_url) { 'http://www.example.com' }
let(:example_url2) { 'http://www.example1.com' } let(:example_url2) { 'http://www.example1.com' }
...@@ -197,9 +201,10 @@ describe API::Badges do ...@@ -197,9 +201,10 @@ describe API::Badges do
context 'when authenticated as a maintainer/owner' do context 'when authenticated as a maintainer/owner' do
it 'updates the member', :quarantine do it 'updates the member', :quarantine do
put api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", maintainer), put api("/#{source_type.pluralize}/#{source.id}/badges/#{badge.id}", maintainer),
params: { link_url: example_url, image_url: example_url2 } params: { name: example_name, link_url: example_url, image_url: example_url2 }
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(200)
expect(json_response['name']).to eq(example_name)
expect(json_response['link_url']).to eq(example_url) expect(json_response['link_url']).to eq(example_url)
expect(json_response['image_url']).to eq(example_url2) expect(json_response['image_url']).to eq(example_url2)
expect(json_response['kind']).to eq source_type expect(json_response['kind']).to eq source_type
...@@ -297,7 +302,7 @@ describe API::Badges do ...@@ -297,7 +302,7 @@ describe API::Badges do
expect(response).to have_gitlab_http_status(200) expect(response).to have_gitlab_http_status(200)
expect(json_response.keys).to contain_exactly('link_url', 'rendered_link_url', 'image_url', 'rendered_image_url') expect(json_response.keys).to contain_exactly('name', 'link_url', 'rendered_link_url', 'image_url', 'rendered_image_url')
expect(json_response['link_url']).to eq(example_url) expect(json_response['link_url']).to eq(example_url)
expect(json_response['image_url']).to eq(example_url2) expect(json_response['image_url']).to eq(example_url2)
expect(json_response['rendered_link_url']).to eq(example_url) expect(json_response['rendered_link_url']).to eq(example_url)
...@@ -351,9 +356,9 @@ describe API::Badges do ...@@ -351,9 +356,9 @@ describe API::Badges do
project.add_developer(developer) project.add_developer(developer)
project.add_maintainer(maintainer) project.add_maintainer(maintainer)
project.request_access(access_requester) project.request_access(access_requester)
project.project_badges << build(:project_badge, project: project) project.project_badges << build(:project_badge, project: project, name: 'ExampleBadge1')
project.project_badges << build(:project_badge, project: project) project.project_badges << build(:project_badge, project: project, name: 'ExampleBadge2')
project_group.badges << build(:group_badge, group: group) project_group.badges << build(:group_badge, group: group, name: 'ExampleBadge3')
end end
end end
...@@ -362,8 +367,8 @@ describe API::Badges do ...@@ -362,8 +367,8 @@ describe API::Badges do
group.add_developer(developer) group.add_developer(developer)
group.add_owner(maintainer) group.add_owner(maintainer)
group.request_access(access_requester) group.request_access(access_requester)
group.badges << build(:group_badge, group: group) group.badges << build(:group_badge, group: group, name: 'ExampleBadge4')
group.badges << build(:group_badge, group: group) group.badges << build(:group_badge, group: group, name: 'ExampleBadge5')
end end
end end
end end
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