Esempio n. 1
0
        private static void InitializeMocks(TestAppConfig config, Mocks mocks, ViewModelObjects viewModel)
        {
            mocks.Views.CreateLoadedMessagesView().MessagesView.SetViewModel(
                Arg.Do <UI.Presenters.LogViewer.IViewModel>(x => viewModel.LoadedMessagesLogViewer = x));
            mocks.Views.CreateLoadedMessagesView().MessagesView.DisplayLinesPerPage.Returns(config.LogViewerViewSize);

            mocks.Views.CreateMainFormView().SetViewModel(
                Arg.Do <UI.Presenters.MainForm.IViewModel>(x => viewModel.MainForm = x));

            mocks.Views.CreatePreprocessingView().SetViewModel(
                Arg.Do <UI.Presenters.PreprocessingUserInteractions.IViewModel>(x => viewModel.PreprocessingUserInteractions = x));

            mocks.Views.CreatePostprocessingTabPage().SetViewModel(
                Arg.Do <UI.Presenters.Postprocessing.MainWindowTabPage.IViewModel>(x => viewModel.PostprocessingTabPage = x));

            mocks.Views.CreateLoadedMessagesView().SetViewModel(
                Arg.Do <UI.Presenters.LoadedMessages.IViewModel>(x => viewModel.LoadedMessages = x));

            mocks.Views.CreateSearchResultView().MessagesView.SetViewModel(
                Arg.Do <UI.Presenters.LogViewer.IViewModel>(x => viewModel.SearchResultLogViewer = x));
            mocks.Views.CreateSearchResultView().MessagesView.DisplayLinesPerPage.Returns(config.LogViewerViewSize);

            mocks.Views.CreateMessagePropertiesDialogView().CreateDialog(
                Arg.Do <UI.Presenters.MessagePropertiesDialog.IDialogViewModel>(x => viewModel.MessagePropertiesDialog = x));

            mocks.Views.CreateSourcesManagerView().SetViewModel(
                Arg.Do <UI.Presenters.SourcesManager.IViewModel>(x => viewModel.SourcesManager = x));
            mocks.Views.CreateSourcesListView().SetViewModel(
                Arg.Do <UI.Presenters.SourcesList.IViewModel>(x => viewModel.SourcesList = x));
            mocks.Views.CreateSourcePropertiesWindowView().SetViewModel(
                Arg.Do <UI.Presenters.SourcePropertiesWindow.IViewModel>(x => viewModel.SourcePropertiesWindow = x));
        }
Esempio n. 2
0
        public static async Task <TestAppInstance> Create(TestAppConfig config = null)
        {
            config = config ?? new TestAppConfig();

            var mocks = new Mocks
            {
                CredentialsCache      = Substitute.For <Preprocessing.ICredentialsCache>(),
                WebBrowserDownloader  = Substitute.For <WebViewTools.IWebViewTools>(),
                WebContentCacheConfig = Substitute.For <Persistence.IWebContentCacheConfig>(),
                LogsDownloaderConfig  = Substitute.For <Preprocessing.ILogsDownloaderConfig>(),

                ClipboardAccess     = Substitute.For <UI.Presenters.IClipboardAccess>(),
                ShellOpen           = Substitute.For <UI.Presenters.IShellOpen>(),
                AlertPopup          = Substitute.For <UI.Presenters.IAlertPopup>(),
                FileDialogs         = Substitute.For <UI.Presenters.IFileDialogs>(),
                PromptDialog        = Substitute.For <UI.Presenters.IPromptDialog>(),
                AboutConfig         = Substitute.For <UI.Presenters.About.IAboutConfig>(),
                DragDropHandler     = Substitute.For <UI.Presenters.MainForm.IDragDropHandler>(),
                SystemThemeDetector = Substitute.For <UI.Presenters.ISystemThemeDetector>(),
                Views = Substitute.For <UI.Presenters.Factory.IViewsFactory>(),
            };

            var viewModel = new ViewModelObjects();

            InitializeMocks(config, mocks, viewModel);

            var appDataDir = Path.Combine(Path.GetTempPath(),
                                          $"logjoint.int.test.workdir.{DateTime.Now.ToString("yyyy'-'MM'-'dd'T'HH'-'mm'-'ss'.'fff")}");

            Directory.CreateDirectory(appDataDir);
            var traceListener = new TraceListener(Path.Combine(appDataDir, "test-debug.log") + ";logical-thread=1");

            ISynchronizationContext serialSynchronizationContext = new SerialSynchronizationContext();

            var app = await serialSynchronizationContext.Invoke(() =>
            {
                var modelObjects = ModelFactory.Create(
                    new ModelConfig
                {
                    WorkspacesUrl                    = "",
                    TelemetryUrl                     = "",
                    IssuesUrl                        = "",
                    AutoUpdateUrl                    = "",
                    WebContentCacheConfig            = mocks.WebContentCacheConfig,
                    LogsDownloaderConfig             = mocks.LogsDownloaderConfig,
                    AppDataDirectory                 = appDataDir,
                    TraceListeners                   = new[] { traceListener },
                    DisableLogjointInstancesCounting = true
                },
                    serialSynchronizationContext,
                    (_1) => mocks.CredentialsCache,
                    (_1, _2, _3) => mocks.WebBrowserDownloader,
                    Substitute.For <Drawing.IMatrixFactory>(),                    // todo: won't work for SequenceDiagram presenter tests
                    RegularExpressions.FCLRegexFactory.Instance
                    );

                var presentationObjects = UI.Presenters.Factory.Create(
                    modelObjects,
                    mocks.ClipboardAccess,
                    mocks.ShellOpen,
                    mocks.AlertPopup,
                    mocks.FileDialogs,
                    mocks.PromptDialog,
                    mocks.AboutConfig,
                    mocks.DragDropHandler,
                    mocks.SystemThemeDetector,
                    mocks.Views
                    );

                return(new TestAppInstance
                {
                    SynchronizationContext = serialSynchronizationContext,
                    Mocks = mocks,
                    ModelObjects = modelObjects,
                    PresentationObjects = presentationObjects,
                    ViewModel = viewModel,
                    Samples = new SamplesUtils(),
                    traceListener = traceListener,
                    AppDataDirectory = appDataDir
                });
            });

            if (config.LocalPluginsList != null)
            {
                app.ModelObjects.PluginsManager.LoadPlugins(app, config.LocalPluginsList, preferTestPluginEntryPoints: true);
            }

            return(app);
        }
Esempio n. 3
0
        public static async Task <TestAppInstance> Create(TestAppConfig config = null)
        {
            config = config ?? new TestAppConfig();

            var mocks = new Mocks
            {
                CredentialsCache      = Substitute.For <Preprocessing.ICredentialsCache>(),
                WebBrowserDownloader  = Substitute.For <WebViewTools.IWebViewTools>(),
                WebContentCacheConfig = Substitute.For <Persistence.IWebContentCacheConfig>(),
                LogsDownloaderConfig  = Substitute.For <Preprocessing.ILogsDownloaderConfig>(),

                ClipboardAccess     = Substitute.For <UI.Presenters.IClipboardAccess>(),
                ShellOpen           = Substitute.For <UI.Presenters.IShellOpen>(),
                AlertPopup          = Substitute.For <UI.Presenters.IAlertPopup>(),
                FileDialogs         = Substitute.For <UI.Presenters.IFileDialogs>(),
                PromptDialog        = Substitute.For <UI.Presenters.IPromptDialog>(),
                AboutConfig         = Substitute.For <UI.Presenters.About.IAboutConfig>(),
                DragDropHandler     = Substitute.For <UI.Presenters.MainForm.IDragDropHandler>(),
                SystemThemeDetector = Substitute.For <UI.Presenters.ISystemThemeDetector>(),
                Views = Substitute.For <UI.Presenters.Factory.IViewsFactory>(),
            };

            var viewModel = new ViewModelObjects();

            InitializeMocks(config, mocks, viewModel);

            var appDataDir = Path.Combine(Path.GetTempPath(),
                                          $"logjoint.int.test.workdir.{DateTime.Now.ToString("yyyy'-'MM'-'dd'T'HH'-'mm'-'ss'.'fff")}");

            Directory.CreateDirectory(appDataDir);
            var traceListener = new TraceListener(Path.Combine(appDataDir, "test-debug.log") + ";logical-thread=1");

            ISynchronizationContext serialSynchronizationContext = new SerialSynchronizationContext();

            var(model, presentation) = await serialSynchronizationContext.Invoke(() =>
            {
                var modelObjects = ModelFactory.Create(
                    new ModelConfig
                {
                    WorkspacesUrl         = "",
                    TelemetryUrl          = "",
                    IssuesUrl             = "",
                    AutoUpdateUrl         = "",
                    WebContentCacheConfig = mocks.WebContentCacheConfig,
                    LogsDownloaderConfig  = mocks.LogsDownloaderConfig,
                    AppDataDirectory      = appDataDir,
                    TraceListeners        = new[] { traceListener }
                },
                    serialSynchronizationContext,
                    (_1) => mocks.CredentialsCache,
                    (_1, _2, _3) => mocks.WebBrowserDownloader
                    );

                var presentationObjects = UI.Presenters.Factory.Create(
                    modelObjects,
                    mocks.ClipboardAccess,
                    mocks.ShellOpen,
                    mocks.AlertPopup,
                    mocks.FileDialogs,
                    mocks.PromptDialog,
                    mocks.AboutConfig,
                    mocks.DragDropHandler,
                    mocks.SystemThemeDetector,
                    mocks.Views
                    );

                return(modelObjects, presentationObjects);
            });

            return(new TestAppInstance
            {
                SynchronizationContext = serialSynchronizationContext,
                Mocks = mocks,
                Model = model,
                Presentation = presentation,
                ViewModel = viewModel,
                traceListener = traceListener,
                AppDataDirectory = appDataDir
            });
        }