Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-11-15 12:15:53 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-15 12:15:53 +0300
commit3ff1605f7d054d6dfc360c09ba5860e81250d5e4 (patch)
tree610db341b8aaae962fc5f32c2004e6dacc3e9a39 /spec/graphql/types
parentde671a855fff66bcb0eae10b654e806b777f0751 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/graphql/types')
-rw-r--r--spec/graphql/types/ml/model_type_spec.rb13
-rw-r--r--spec/graphql/types/ml/model_version_links_type_spec.rb11
-rw-r--r--spec/graphql/types/ml/model_version_type_spec.rb13
-rw-r--r--spec/graphql/types/query_type_spec.rb10
4 files changed, 47 insertions, 0 deletions
diff --git a/spec/graphql/types/ml/model_type_spec.rb b/spec/graphql/types/ml/model_type_spec.rb
new file mode 100644
index 00000000000..9320b251dd4
--- /dev/null
+++ b/spec/graphql/types/ml/model_type_spec.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe GitlabSchema.types['MlModel'], feature_category: :mlops do
+ specify { expect(described_class.description).to eq('Machine learning model in the model registry') }
+
+ it 'includes all the package fields' do
+ expected_fields = %w[id name versions]
+
+ expect(described_class).to include_graphql_fields(*expected_fields)
+ end
+end
diff --git a/spec/graphql/types/ml/model_version_links_type_spec.rb b/spec/graphql/types/ml/model_version_links_type_spec.rb
new file mode 100644
index 00000000000..d2a11643c35
--- /dev/null
+++ b/spec/graphql/types/ml/model_version_links_type_spec.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe GitlabSchema.types['MLModelVersionLinks'], feature_category: :mlops do
+ it 'has the expected fields' do
+ expected_fields = %w[showPath]
+
+ expect(described_class).to include_graphql_fields(*expected_fields)
+ end
+end
diff --git a/spec/graphql/types/ml/model_version_type_spec.rb b/spec/graphql/types/ml/model_version_type_spec.rb
new file mode 100644
index 00000000000..03652c55e20
--- /dev/null
+++ b/spec/graphql/types/ml/model_version_type_spec.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe GitlabSchema.types['MlModelVersion'], feature_category: :mlops do
+ specify { expect(described_class.description).to eq('Version of a machine learning model') }
+
+ it 'includes all the package fields' do
+ expected_fields = %w[id version created_at _links]
+
+ expect(described_class).to include_graphql_fields(*expected_fields)
+ end
+end
diff --git a/spec/graphql/types/query_type_spec.rb b/spec/graphql/types/query_type_spec.rb
index 8bda738751d..f2a63fbeb57 100644
--- a/spec/graphql/types/query_type_spec.rb
+++ b/spec/graphql/types/query_type_spec.rb
@@ -137,4 +137,14 @@ RSpec.describe GitlabSchema.types['Query'], feature_category: :shared do
is_expected.to have_graphql_resolver(Resolvers::BoardListResolver)
end
end
+
+ describe 'mlModel field' do
+ subject { described_class.fields['mlModel'] }
+
+ it 'returns metadata', :aggregate_failures do
+ is_expected.to have_graphql_type(Types::Ml::ModelType)
+ is_expected.to have_graphql_arguments(:id)
+ is_expected.to have_graphql_resolver(Resolvers::Ml::ModelDetailResolver)
+ end
+ end
end