1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
# frozen_string_literal: true
require 'spec_helper'
VITE_GDK_CONFIG_FILEPATH = "config/vite.gdk.json"
RSpec.describe ViteGdk, feature_category: :tooling do
before do
allow(ViteRuby).to receive(:configure)
allow(ViteRuby.env).to receive(:[]=)
allow(YAML).to receive(:safe_load_file)
end
describe '#load_gdk_vite_config' do
context 'when not in production environment' do
before do
stub_env('RAILS_ENV', nil)
end
context 'when it loads file successfully' do
it 'configures ViteRuby' do
expect(File).to receive(:exist?) do |file_path|
expect(file_path).to end_with(VITE_GDK_CONFIG_FILEPATH)
end.and_return(true)
expect(YAML).to receive(:safe_load_file) do |file_path|
expect(file_path).to end_with(VITE_GDK_CONFIG_FILEPATH)
end.and_return('enabled' => true, 'port' => 3038, 'host' => 'gdk.test')
expect(ViteRuby).to receive(:configure).with(host: 'gdk.test', port: 3038)
expect(ViteRuby.env).to receive(:[]=).with('VITE_ENABLED', 'true')
expect(ViteRuby.env).to receive(:[]=).with('VITE_HMR_HOST', 'gdk.test')
expect(ViteRuby.env).to receive(:[]=).with('VITE_HMR_HTTP_URL', 'http://gdk.test:3038')
expect(ViteRuby.env).to receive(:[]=).with('VITE_HMR_WS_URL', 'ws://gdk.test:3038')
described_class.load_gdk_vite_config
end
context 'when HMR config is present' do
let(:hmr_config) do
{
'host' => 'hmr.gdk.test',
'clientPort' => 9999,
'protocol' => 'wss'
}
end
it 'configures ViteRuby with HMR settings' do
expect(File).to receive(:exist?) do |file_path|
expect(file_path).to end_with(VITE_GDK_CONFIG_FILEPATH)
end.and_return(true)
expect(YAML).to receive(:safe_load_file) do |file_path|
expect(file_path).to end_with(VITE_GDK_CONFIG_FILEPATH)
end.and_return('enabled' => true, 'port' => 3038, 'host' => 'gdk.test', 'hmr' => hmr_config)
expect(ViteRuby).to receive(:configure).with(host: 'gdk.test', port: 3038)
expect(ViteRuby.env).to receive(:[]=).with('VITE_ENABLED', 'true')
expect(ViteRuby.env).to receive(:[]=).with('VITE_HMR_HOST', 'hmr.gdk.test')
expect(ViteRuby.env).to receive(:[]=).with('VITE_HMR_HTTP_URL', 'https://hmr.gdk.test:9999')
expect(ViteRuby.env).to receive(:[]=).with('VITE_HMR_WS_URL', 'wss://hmr.gdk.test:9999')
described_class.load_gdk_vite_config
end
end
context 'when HMR config has no port' do
let(:hmr_config) do
{
'host' => 'hmr.gdk.test',
'protocol' => 'wss'
}
end
it 'configures ViteRuby with default port' do
expect(File).to receive(:exist?) do |file_path|
expect(file_path).to end_with(VITE_GDK_CONFIG_FILEPATH)
end.and_return(true)
expect(YAML).to receive(:safe_load_file) do |file_path|
expect(file_path).to end_with(VITE_GDK_CONFIG_FILEPATH)
end.and_return('enabled' => true, 'port' => 3038, 'host' => 'gdk.test', 'hmr' => hmr_config)
expect(ViteRuby).to receive(:configure).with(host: 'gdk.test', port: 3038)
expect(ViteRuby.env).to receive(:[]=).with('VITE_ENABLED', 'true')
expect(ViteRuby.env).to receive(:[]=).with('VITE_HMR_HOST', 'hmr.gdk.test')
expect(ViteRuby.env).to receive(:[]=).with('VITE_HMR_HTTP_URL', 'https://hmr.gdk.test:3038')
expect(ViteRuby.env).to receive(:[]=).with('VITE_HMR_WS_URL', 'wss://hmr.gdk.test:3038')
described_class.load_gdk_vite_config
end
end
end
context 'when config file is missing' do
it 'does nothing' do
expect(File).to receive(:exist?) do |file_path|
expect(file_path).to end_with(VITE_GDK_CONFIG_FILEPATH)
end.and_return(false)
expect(ViteRuby).not_to receive(:configure)
expect(ViteRuby.env).not_to receive(:[]=).with('VITE_ENABLED', 'false')
expect(ViteRuby.env).not_to receive(:[]=).with('VITE_ENABLED', 'true')
described_class.load_gdk_vite_config
end
end
end
context 'when in production environment' do
before do
stub_env('RAILS_ENV', 'production')
end
it 'does not load and configure ViteRuby' do
expect(YAML).not_to receive(:safe_load_file)
expect(ViteRuby).not_to receive(:configure)
expect(ViteRuby.env).not_to receive(:[]=).with('VITE_ENABLED')
described_class.load_gdk_vite_config
end
end
end
end
|