.then
একটি জাভাস্ক্রিপ্ট Promise
দৃষ্টান্তের গুলি সাফ করার জন্য কি কোনও পদ্ধতি আছে ?
আমি QUNit এর উপরে একটি জাভাস্ক্রিপ্ট পরীক্ষার কাঠামো লিখেছি । ফ্রেমওয়ার্কটি একে একে প্রতিটি চালিয়ে একযোগে পরীক্ষা চালায় Promise
। (এই কোডটি ব্লকের দৈর্ঘ্যের জন্য দুঃখিত
/* Promise extension -- used for easily making an async step with a
timeout without the Promise knowing anything about the function
it's waiting on */
$$.extend(Promise, {
asyncTimeout: function (timeToLive, errorMessage) {
var error = new Error(errorMessage || "Operation timed out.");
var res, // resolve()
rej, // reject()
t, // timeout instance
rst, // reset timeout function
p, // the promise instance
at; // the returned asyncTimeout instance
function createTimeout(reject, tempTtl) {
return setTimeout(function () {
// triggers a timeout event on the asyncTimeout object so that,
// if we want, we can do stuff outside of a .catch() block
// (may not be needed?)
$$(at).trigger("timeout");
reject(error);
}, tempTtl || timeToLive);
}
p = new Promise(function (resolve, reject) {
if (timeToLive != -1) {
t = createTimeout(reject);
// reset function -- allows a one-time timeout different
// from the one original specified
rst = function (tempTtl) {
clearTimeout(t);
t = createTimeout(reject, tempTtl);
}
} else {
// timeToLive = -1 -- allow this promise to run indefinitely
// used while debugging
t = 0;
rst = function () { return; };
}
res = function () {
clearTimeout(t);
resolve();
};
rej = reject;
});
return at = {
promise: p,
resolve: res,
reject: rej,
reset: rst,
timeout: t
};
}
});
/* framework module members... */
test: function (name, fn, options) {
var mod = this; // local reference to framework module since promises
// run code under the window object
var defaultOptions = {
// default max running time is 5 seconds
timeout: 5000
}
options = $$.extend({}, defaultOptions, options);
// remove timeout when debugging is enabled
options.timeout = mod.debugging ? -1 : options.timeout;
// call to QUnit.test()
test(name, function (assert) {
// tell QUnit this is an async test so it doesn't run other tests
// until done() is called
var done = assert.async();
return new Promise(function (resolve, reject) {
console.log("Beginning: " + name);
var at = Promise.asyncTimeout(options.timeout, "Test timed out.");
$$(at).one("timeout", function () {
// assert.fail() is just an extension I made that literally calls
// assert.ok(false, msg);
assert.fail("Test timed out");
});
// run test function
var result = fn.call(mod, assert, at.reset);
// if the test returns a Promise, resolve it before resolving the test promise
if (result && result.constructor === Promise) {
// catch unhandled errors thrown by the test so future tests will run
result.catch(function (error) {
var msg = "Unhandled error occurred."
if (error) {
msg = error.message + "\n" + error.stack;
}
assert.fail(msg);
}).then(function () {
// resolve the timeout Promise
at.resolve();
resolve();
});
} else {
// if test does not return a Promise, simply clear the timeout
// and resolve our test Promise
at.resolve();
resolve();
}
}).then(function () {
// tell QUnit that the test is over so that it can clean up and start the next test
done();
console.log("Ending: " + name);
});
});
}
যদি কোনও পরীক্ষার সময় শেষ হয় তবে আমার সময়সীমার প্রতিশ্রুতি assert.fail()
পরীক্ষায় আসবে যাতে পরীক্ষাটি ব্যর্থ হিসাবে চিহ্নিত হয়েছে, যা সব ভাল এবং ভাল, তবে পরীক্ষাটি চলতে থাকে কারণ পরীক্ষার প্রতিশ্রুতি ( result
) এখনও এটি সমাধানের অপেক্ষায় রয়েছে।
আমার পরীক্ষা বাতিল করার জন্য আমার একটি ভাল উপায় দরকার। আমি ফ্রেমওয়ার্ক মডিউল this.cancelTest
বা কিছুতে একটি ক্ষেত্র তৈরি করে এবং পরীক্ষার মধ্যে প্রতিবার (যেমন প্রতিটি then()
পুনরাবৃত্তির শুরুতে ) বাতিল হওয়া যায় কিনা তা পরীক্ষা করেই এটি করতে পারি। যাইহোক, আদর্শভাবে, আমি আমার ভেরিয়েবলের $$(at).on("timeout", /* something here */)
অবশিষ্ট then()
অংশগুলি সাফ করতে ব্যবহার করতে পারি result
, যাতে পরীক্ষার বাকী কোনওটিই চালিত হয় না।
এর মতো কিছু আছে কি?
দ্রুত আপডেট
আমি ব্যবহার করার চেষ্টা করেছি Promise.race([result, at.promise])
। এটি কাজ করে না।
আপডেট 2 + বিভ্রান্তি
আমাকে অবরুদ্ধ করতে, আমি mod.cancelTest
পরীক্ষার ধারণার মধ্যে / পোলিংয়ের সাথে কয়েকটি লাইন যুক্ত করেছি । (আমি ইভেন্ট ট্রিগারটিও সরিয়েছি))
return new Promise(function (resolve, reject) {
console.log("Beginning: " + name);
var at = Promise.asyncTimeout(options.timeout, "Test timed out.");
at.promise.catch(function () {
// end the test if it times out
mod.cancelTest = true;
assert.fail("Test timed out");
resolve();
});
// ...
}).then(function () {
// tell QUnit that the test is over so that it can clean up and start the next test
done();
console.log("Ending: " + name);
});
আমি catch
বিবৃতিতে একটি ব্রেকপয়েন্ট স্থাপন করেছি , এবং এটি আঘাত হানে। আমাকে এখন বিভ্রান্ত করার বিষয়টি হচ্ছে যে then()
বিবৃতিটি বলা হচ্ছে না। ধারনা?
আপডেট 3
শেষ জিনিস খুঁজে বের করা। fn.call()
আমি একটি ত্রুটি নিক্ষেপ করছিলাম যা আমি ধরিনি, সুতরাং পরীক্ষার প্রতিশ্রুতি at.promise.catch()
এটি সমাধান করতে পারার আগে প্রত্যাখ্যান করেছিল ।
Prex
।