在 karma 环境中使用 Blob 中的 importsScripts

Using importsScripts within Blob in a karma environment(在 karma 环境中使用 Blob 中的 importsScripts)
本文介绍了在 karma 环境中使用 Blob 中的 importsScripts的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I am working on a small project of mine using karma, and jasmine. My targeted browser is chrome 32.

I am trying to import scripts within a web worker whom I have instanciated through a blob as follows :

describeAsyncAppliPersephone("When the application project to DOM", function()
{
    it("it should call the function of DomProjection in the project associated with its event", function()
    {
        var eventSentBack = {
            eventType: 'testReceived',
            headers: { id: 14, version: 4 },
            payLoad: { textChanged: 'newText' }
        };
        var isRendered = false;
        var fnProjection = function(event, payload)
        {
            isRendered = true;
        }

        var bootstrap = [
            { eventType: 'testReceived', projection: fnProjection },
            { eventType: 'test2Received', projection: function() { } }
        ];

        runs(function()
        {
            var factory = new WorkerFactory();

        var worker = factory.CreateByScripts('importScripts("/base/SiteWeb/project/js/app/application.js"); var app = new application(self); app.projectOnDOM(' + JSON.stringify(eventSentBack) + '); ');

            console.log(worker.WorkerLocation);

            var applicationQueue = new queueAsync(worker);
            var projectQueue = new queueSync(worker);
            var p = new project(applicationQueue, persephoneQueue, bootstrap);

            applicationQueue.publish(eventSentBack);
        });

        waitsFor(function() { return isRendered }, "Projection called", 500);

        runs(function()
        {
            expect(isRendered).toBe(true);
        });


    });
});

workerFactory is as follows :

this.CreateByScripts = function(scripts, fDefListener, fOnError)
    {
        var arrayScripts = scripts;

        if (!arrayScripts)
            throw "unable to load worker for undefined scripts";

        if (Object.prototype.toString.call(arrayScripts) !== '[object Array]')
            arrayScripts = [arrayScripts];

        var blob = new Blob(arrayScripts, { type: "text/javascript" });

        var w = createWorker(window.URL.createObjectURL(blob));

        return new QueryableWorker(w, fDefListener, fOnError);
    }

where createWorker is :

createWorker = function(sUrl)
        {
            return new Worker(sUrl);
        }

But the importScripts throws me the following error :

Uncaught SyntaxError: Failed to execute 'importScripts': the URL '/base/SiteWeb/project/js/app/application.js' is invalid.

I have tried with the path within the browser :

http://mylocalhost:9876/base/SiteWeb/project/js/app/application.js

and it does work well.

What is the path I should use to make importScripts working successfully ?

Thanks,

解决方案

You can't use relative path in worker created with Blob.

Had this problem today. Solution is explained in "The Basics of Web Workers", but a little hidden in length of the article:

The reason being: the worker (now created from a blob URL) will be resolved with a blob: prefix, while your app will be running from a different (presumably http://) scheme. Hence, the failure will be due to cross origin restrictions.

If you are determined to avoid hardcoding domain name in your workers the article has also a solution for this. Import your scripts on receiving a message with URL as one of its parameters:

self.onmessage = function(e) {
    importScripts(e.data.url + 'yourscript.js');
};

and start your worker with sending that url

worker.postMessage({url: document.location.protocol + '//' + document.location.host});

The code above is simplified for clarity.

这篇关于在 karma 环境中使用 Blob 中的 importsScripts的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)