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

web_ide_routing_spec.rb « routing « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58c24189dfdc9ee3ff2ac4f92459fbc937771c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require "spec_helper"

RSpec.describe "Web IDE routing", feature_category: :remote_development do
  describe 'remote' do
    it "routes to #index, without remote_path" do
      expect(post("/-/ide/remote/my.env.gitlab.example.com%3A3443")).to route_to(
        "web_ide/remote_ide#index",
        remote_host: 'my.env.gitlab.example.com:3443'
      )
    end

    it "routes to #index, with remote_path" do
      expect(post("/-/ide/remote/my.env.gitlab.example.com%3A3443/foo/bar.dev/test.dir")).to route_to(
        "web_ide/remote_ide#index",
        remote_host: 'my.env.gitlab.example.com:3443',
        remote_path: 'foo/bar.dev/test.dir'
      )
    end
  end
end