[转]NPOI TestFunctionRegistry.cs
本文转自:https://github.com/tonyqus/npoi/blob/master/testcases/main/SS/Formula/TestFunctionRegistry.cs
| /* | |
| * ==================================================================== | |
| * Licensed to the Apache Software Foundation (ASF) under one or more | |
| * contributor license agreements. See the NOTICE file distributed with | |
| * this work for additional information regarding copyright ownership. | |
| * The ASF licenses this file to You under the Apache License, Version 2.0 | |
| * (the "License"); you may not use this file except in compliance with | |
| * the License. You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software | |
| * distributed under the License is distributed on an "AS IS" BASIS, | |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| * See the License for the specific language governing permissions and | |
| * limitations under the License. | |
| * ==================================================================== | |
| */ | |
| using System; | |
| using NPOI.HSSF.UserModel; | |
| using NPOI.SS.Formula; | |
| using NPOI.SS.Formula.Atp; | |
| using NPOI.SS.Formula.Eval; | |
| using NPOI.SS.Formula.Functions; | |
| using NPOI.SS.UserModel; | |
| using NUnit.Framework; | |
| namespace TestCases.SS.Formula | |
| { | |
| /** | |
| * | |
| * @author Yegor Kozlov | |
| */ | |
| [TestFixture] | |
| public class TestFunctionRegistry | |
| { | |
| [Test] | |
| public void TestRegisterInRuntime() | |
| { | |
| HSSFWorkbook wb = new HSSFWorkbook(); | |
| HSSFSheet sheet = (HSSFSheet)wb.CreateSheet("Sheet1"); | |
| HSSFRow row = (HSSFRow)sheet.CreateRow(0); | |
| HSSFFormulaEvaluator fe = new HSSFFormulaEvaluator(wb); | |
| HSSFCell cellA = (HSSFCell)row.CreateCell(0); | |
| cellA.CellFormula = ("FISHER(A5)"); | |
| CellValue cv; | |
| try | |
| { | |
| //NPOI | |
| //Run it twice in NUnit Gui Window, the first passed but the second failed. | |
| //Maybe the function was cached. Ignore it. | |
| cv = fe.Evaluate(cellA); | |
| Assert.Fail("expectecd exception"); | |
| } | |
| catch (NotImplementedException) | |
| { | |
| ; | |
| } | |
| FunctionEval.RegisterFunction("FISHER", new Function1());/*Function() { | |
| public ValueEval Evaluate(ValueEval[] args, int srcRowIndex, int srcColumnIndex) { | |
| return ErrorEval.NA; | |
| } | |
| });*/ | |
| cv = fe.Evaluate(cellA); | |
| Assert.AreEqual(ErrorEval.NA.ErrorCode, cv.ErrorValue); | |
| HSSFCell cellB = (HSSFCell)row.CreateCell(1); | |
| cellB.CellFormula = ("CUBEMEMBERPROPERTY(A5)"); | |
| try | |
| { | |
| cv = fe.Evaluate(cellB); | |
| Assert.Fail("expectecd exception"); | |
| } | |
| catch (NotImplementedException) | |
| { | |
| ; | |
| } | |
| AnalysisToolPak.RegisterFunction("CUBEMEMBERPROPERTY", new FreeRefFunction1());/*FreeRefFunction() { | |
| public ValueEval Evaluate(ValueEval[] args, OperationEvaluationContext ec) { | |
| return ErrorEval.NUM_ERROR; | |
| } | |
| });*/ | |
| cv = fe.Evaluate(cellB); | |
| Assert.AreEqual(ErrorEval.NUM_ERROR.ErrorCode, cv.ErrorValue); | |
| } | |
| private class Function1 : NPOI.SS.Formula.Functions.Function | |
| { | |
| public ValueEval Evaluate(ValueEval[] args, int srcRowIndex, int srcColumnIndex) | |
| { | |
| return ErrorEval.NA; | |
| } | |
| } | |
| private class FreeRefFunction1 : FreeRefFunction | |
| { | |
| public ValueEval Evaluate(ValueEval[] args, OperationEvaluationContext ec) | |
| { | |
| return ErrorEval.NUM_ERROR; | |
| } | |
| } | |
| class Function2 : NPOI.SS.Formula.Functions.Function | |
| { | |
| public ValueEval Evaluate(ValueEval[] args, int srcRowIndex, int srcColumnIndex) | |
| { | |
| return ErrorEval.NA; | |
| } | |
| } | |
| [Test] | |
| public void TestExceptions() | |
| { | |
| NPOI.SS.Formula.Functions.Function func = new Function2(); | |
| try | |
| { | |
| FunctionEval.RegisterFunction("SUM", func); | |
| Assert.Fail("expectecd exception"); | |
| } | |
| catch (ArgumentException e) | |
| { | |
| Assert.AreEqual("POI already implememts SUM" + | |
| ". You cannot override POI's implementations of Excel functions", e.Message); | |
| } | |
| try | |
| { | |
| FunctionEval.RegisterFunction("SUMXXX", func); | |
| Assert.Fail("expectecd exception"); | |
| } | |
| catch (ArgumentException e) | |
| { | |
| Assert.AreEqual("Unknown function: SUMXXX", e.Message); | |
| } | |
| try | |
| { | |
| FunctionEval.RegisterFunction("ISODD", func); | |
| Assert.Fail("expectecd exception"); | |
| } | |
| catch (ArgumentException e) | |
| { | |
| Assert.AreEqual("ISODD is a function from the Excel Analysis Toolpack. " + | |
| "Use AnalysisToolpack.RegisterFunction(String name, FreeRefFunction func) instead.", e.Message); | |
| } | |
| FreeRefFunction atpFunc = new FreeRefFunction2();/*FreeRefFunction() { | |
| public ValueEval Evaluate(ValueEval[] args, OperationEvaluationContext ec) { | |
| return ErrorEval.NUM_ERROR; | |
| } | |
| };*/ | |
| try | |
| { | |
| AnalysisToolPak.RegisterFunction("ISODD", atpFunc); | |
| Assert.Fail("expectecd exception"); | |
| } | |
| catch (ArgumentException e) | |
| { | |
| Assert.AreEqual("POI already implememts ISODD" + | |
| ". You cannot override POI's implementations of Excel functions", e.Message); | |
| } | |
| try | |
| { | |
| AnalysisToolPak.RegisterFunction("ISODDXXX", atpFunc); | |
| Assert.Fail("expectecd exception"); | |
| } | |
| catch (ArgumentException e) | |
| { | |
| Assert.AreEqual("ISODDXXX is not a function from the Excel Analysis Toolpack.", e.Message); | |
| } | |
| try | |
| { | |
| AnalysisToolPak.RegisterFunction("SUM", atpFunc); | |
| Assert.Fail("expectecd exception"); | |
| } | |
| catch (ArgumentException e) | |
| { | |
| Assert.AreEqual("SUM is a built-in Excel function. " + | |
| "Use FunctoinEval.RegisterFunction(String name, Function func) instead.", e.Message); | |
| } | |
| } | |
| class FreeRefFunction2 : FreeRefFunction | |
| { | |
| public ValueEval Evaluate(ValueEval[] args, OperationEvaluationContext ec) | |
| { | |
| return ErrorEval.NUM_ERROR; | |
| } | |
| } | |
| } | |
| } |
[转]NPOI TestFunctionRegistry.cs的更多相关文章
- NPOI 在指定单元格导入导出图片
NPOI 在指定单元格导入导出图片 Intro 我维护了一个 NPOI 的扩展,主要用来导入导出 Excel 数据,最近有网友提出了导入 Excel 的时候解析图片的需求,于是就有了本文的探索 导入E ...
- NPOIHelper.cs (NPOI 2.1.1)
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.D ...
- C#利用NPOI处理excel的类 NPOIHelper.cs
个人的NPOIHelp类,包括datatable导出到excel,dataset导出到excel,excel导入到datatable,excel导入到dataset, 更新excel中的数据,验证导入 ...
- (C#)使用NPOI导出Excel
在做业务型的软件时,经常需要将某些数据导出,本文介绍了在Winform或Asp.net中使用NPOI(POI 项目的 .NET 版本)来操作Excel文件,而无需安装Office. 首先,需要获取NP ...
- 使用NPOI从Excel中提取图片及图片位置信息
问题背景: 话说,在ExcelReport的开发过程中,有一个比较棘手的问题:怎么复制图片呢? 当然,解决这个问题的第一步是:能使用NPOI提取到图片及图片的位置信息.到这里,一切想法都很顺利.但NP ...
- 分享我基于NPOI+ExcelReport实现的导入与导出EXCEL类库:ExcelUtility
1. ExcelUtility功能: 1.将数据导出到EXCEL(支持XLS,XLSX,支持多种类型模板,支持列宽自适应) 类名:ExcelUtility. Export 2.将EXCEL ...
- ASP.NET使用NPOI加载Excel模板并导出下载
1.为什么要使用NPOI导出Excel? 一.解决传统操作Excel遇到的问题: 如果是.NET,需要在服务器端装Office,且及时更新它,以防漏洞,还需要设定权限允许.NET访问COM+,如果在导 ...
- 使用NPOI将TABLE内容导出到EXCEL
项目中需要将页面中的table内容导出到EXCEL,在用了几种方法后发现NPO是最快&最好的 需要应用 NPOI.dll 还有个Ionic.Zip.dll不知道有用没,没去研究,两个DLL都放 ...
- NPOI 读写Excel
实例功能概述: 1.支持Excel2003以及2007 2.支持Excel读取到DataTable(TableToExcel) 3.支持DataTable导出到Excel(TableToExcel) ...
随机推荐
- c#调用word com组件 替换书签套打
安装office2007,添加com引用Microsoft Word12.0 Object Library和Microsoft Office12.0 Object Library using Syst ...
- asp.net中,<%#%>,<%=%>和<%%>分别是什么意思,有什么区别
在asp.net中经常出现包含这种形式<%%>的html代码,总的来说包含下面这样几种格式:一. <%%>这种格式实际上就是和asp的用法一样的,只是asp中里面是vbscr ...
- 解决Cannot change version of project facet Dynamic Web M
dynamic web module 版本之间的区别: Servlet 3.0 December 2009 JavaEE 6, JavaSE 6 Pluggability, Ease of devel ...
- (旧)子数涵数·PS——文字人物
首先我们来看一下我用到的素材(在百度图库里下载的). 一.打开PS,在PS中打开素材. 二.复制一个图层(好习惯不解释). 三.图像->调整->阈值,或者按下图示按钮后选择阈值,弹出阈值窗 ...
- WEB前端开发和调试的工具
前端开发在线课程: http://yun.lu/student/course/list/8 1.HBuilder:WEB开发IDE工具 hbulider,内核是eclipse,Dcloud公司出品 ...
- PHP学习笔记:万能随机字符串生成函数(已经封装好)
做验证码用到的,然后就把这个函数封装起来,使用时候要设置2个参数: $str设置里要被采集的字符串,比如: $str='efasfgzsrhftjxjxjhsrth'; 则在函数里面生成的字符串就回从 ...
- webpack学习(入门基础)
webpack的学习webpack是什么?1:加载模块(将JS.sass/less.图片等作为模块来处理使用) 2:进行打包 webpack的优势?1:webpack以commonJS(JS的规范)的 ...
- asp.net mvc Html.BeginForm()方法
Html.BeginForm()方法将会输出<form>标签,而且必须以using包起来,如此便可在using程序代码最后退出时,让asp.net mvc帮你补上<form>标 ...
- SQL如何取得一个面的中心点
) .sdo_point.x x, sdo_geom.sdo_centroid(t.shape, ) .sdo_point.y y from gd_zy_region t SQL如何取得一个面的中心点 ...
- UIButton在不同状态下显示不同背景色
参考自:原文地址(内容与原文并无区别,只是自己以后方便使用整理了一下) 1.UIButton的background是不支持在针对不同的状态显示不同的颜色. 2.UIButton的backgroundI ...